You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I observe the following behavior of gegen on WIN 7 and Linux:
. sysuse auto
(1978 Automobile Data)
. gegen mean=mean(mpg)
-gegen- only provides support for by-able egen functions
r(198);
. by foreign: gegen mean=mean(mpg)
-gegen- only provides support for by-able egen functions
r(198);
This also happens with other gegen functions.
The text was updated successfully, but these errors were encountered:
For some reason I had commented out the lines that made gegen by-able... I fixed this. I also allow the function to be called without "by" (it now assumes it wants the overall stat). The changes are in the develop branch. When we sort out issue #9 I will merge to master.
gtools-0.6.16 (2017-09-13)
* Improves the issues raised by #7
Now the commands only fail if Stata hits the `matsize` limit (internally,
the plugin no longer uses the `subinstr` hack to go from locals to mata
string matrices and uses `tokens` instead, which is more appropriate;
further, the plugin tries to set matsize to at least the number of variables
and gives a verbose error if it fails).
* No longer crashes on Linux systems with older glibc versions.
* Fixes#14
* Should fix#12
* Fixes#9
* Fixed#8
`gegen` is callable via `by:`; it also gives the stat for the
overall group if called without a `by`.
I observe the following behavior of gegen on WIN 7 and Linux:
This also happens with other
gegen
functions.The text was updated successfully, but these errors were encountered: