-
Notifications
You must be signed in to change notification settings - Fork 998
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug: .GRP
should create column named GRP
, not .GRP
(a la .I
, .N
)
#1243
Comments
I haven't thought this through very carefully, but I assume whatever argument applies to |
Not sure but maybe it is only a matter of adjusting regex in two lines of |
@jangorecki perhaps these lines as well |
@MichaelChirico no, just the ones Jan's pointed. Would be great to wrap this up.. |
@arunsrinivasan gonna take care of it now. Is there anything that needs to be changed in the tests / manual for this? |
Closes #1243: auto names .GRP/.I properly as GRP/I.
That
.GRP
returns a variable named.GRP
by default is causing some errors.Consider:
(Basically, trying to eliminate the first and last
yr
of observation from eachid
)This is an error:
cannot change value of locked binding for '.GRP'
. I can think of a number of workarounds, but it seems the simpler solution is to simply change the naming behavior.I imagine this is the same reason why
.I
and.N
return columns namedI
andN
by default.The text was updated successfully, but these errors were encountered: