1. Stata12 关联电子手册的方法:
https://bbs.pinggu.org/thread-1180284-1-1.html
2.
英文操作系统 stata完美支持中文的方法 https://bbs.pinggu.org/thread-121859-1-1.html
Transferring data to/from Stata
Stata Graphical User Interface (for Windows)
General Use and Data Management
Files
Regression
String variables
Error messages
Missing values
Topics on R2
Test Goodness of Fit (R2)
http://www.oocities.org/qecon2002/founda6.html
FAQ: Why are R2 and F so large for models without a constant?
http://www.ats.ucla.edu/stat/mult_pkg/faq/general/noconstant.htm
FAQ: What are pseudo R-squareds?
http://www.ats.ucla.edu/stat/mult_pkg/faq/general/Psuedo_RSquareds.htm
R-square and Standardization in Regression http://www.people.vcu.edu/~nhenry/Rsq.htm
MLE 相关
Q:MLE 过程中,参数 row 的取值范围是 0-1,而 theta 必须为正,但是如何设置参数的取值范围呢?
A:写程序时,可以设定 theta = ln(theta2),得到 theta2 的估计值后可以求出 theta = exp(theta2)。
同理,可以设定 row = normal(row2),得到 row2 的估计值后,可以求出 row = invnormal(row2)。