Added .do sample for Stata.

Source: http://www.stata.com/help.cgi?regress
This commit is contained in:
mwhite-IPA
2014-03-19 17:36:07 -04:00
parent 27ea8d0bf5
commit 220ecabd8c

View File

@@ -0,0 +1,18 @@
* Setup
sysuse auto
* Fit a linear regression
regress mpg weight foreign
* Fit a better linear regression, from a physics standpoint
gen gp100m = 100/mpg
regress gp100m weight foreign
* Obtain beta coefficients without refitting model
regress, beta
* Suppress intercept term
regress weight length, noconstant
* Model already has constant
regress weight length bn.foreign, hascons