python Programming Glossary: self.ncoef
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.nobs self.y.shape 0 # number of observations self.ncoef self.x.shape 1 # number of coef. self.df_e self.nobs 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 # degrees.. self.nobs self.ncoef # degrees of freedom error self.df_r self.ncoef 1 # degrees of freedom regression self.e self.y dot self.x..
|