¡@

Home 

python Programming Glossary: self.nobs

Python Multiple Linear Regression using OLS code with specific data?

http://stackoverflow.com/questions/7458391/python-multiple-linear-regression-using-ols-code-with-specific-data

self.y self.b dot self.inv_xx xy # estimate coefficients self.nobs self.y.shape 0 # number of observations self.ncoef self.x.shape.. self.ncoef self.x.shape 1 # number of coef. self.df_e self.nobs self.ncoef # degrees of freedom error self.df_r self.ncoef 1.. self.y.var # model R squared self.R2adj 1 1 self.R2 self.nobs 1 self.nobs self.ncoef # adjusted R square self.F self.R2 self.df_r..