We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Stata lets you economically state models with a subset of possible dummies for a given categorical variable:
regress y i(1 3).x
That regresses y on two dummies, one for x==1, one for x==3. It would be nice for the levels option of DummyCoding() to allow the same.
levels
DummyCoding()
One can also do
regress y ibn.x, nocons
Which specifies a complete dummy set and no constant term. ("bn" means "base, none") DummyCoding() could accept base=:none to do the same.
base=:none
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Stata lets you economically state models with a subset of possible dummies for a given categorical variable:
That regresses y on two dummies, one for x==1, one for x==3.
It would be nice for the
levels
option ofDummyCoding()
to allow the same.One can also do
Which specifies a complete dummy set and no constant term. ("bn" means "base, none")
DummyCoding()
could acceptbase=:none
to do the same.The text was updated successfully, but these errors were encountered: