Dear Stata Community
I am performing a regression analysis with multiple factors (see output of the regression analysis below) and I stumbled upon one question. The regression output provides the estimates of the coefficients, the standard error as well as the t-statistic among others. After analysing the data I noticed that the standard error of a coefficient corresponds to the square root of the variance of respective coefficient, i.e. basically the standard deviation. However, many statistical books and papers provide the one-sample t-tests as the estimate of the coefficient divided by the standard error with the standard error being equal to the standard deviation divided by the square root of the number of observations.
More precisely, I regress a portfolio excess return on the Fama-French three factors using WLS methodology and want to assess the statistical significance of the constant/intercept. The intercept represents the mean of 213 individual regressions and thus, it's statistical significance should be assessed on the basis of the standard error and not the standard deviation. Hence, do I use the wrong regression command or do I have some logical (and statistical) issues/misthinking in calculating t-tests?
Thank you and kind regards
I am performing a regression analysis with multiple factors (see output of the regression analysis below) and I stumbled upon one question. The regression output provides the estimates of the coefficients, the standard error as well as the t-statistic among others. After analysing the data I noticed that the standard error of a coefficient corresponds to the square root of the variance of respective coefficient, i.e. basically the standard deviation. However, many statistical books and papers provide the one-sample t-tests as the estimate of the coefficient divided by the standard error with the standard error being equal to the standard deviation divided by the square root of the number of observations.
More precisely, I regress a portfolio excess return on the Fama-French three factors using WLS methodology and want to assess the statistical significance of the constant/intercept. The intercept represents the mean of 213 individual regressions and thus, it's statistical significance should be assessed on the basis of the standard error and not the standard deviation. Hence, do I use the wrong regression command or do I have some logical (and statistical) issues/misthinking in calculating t-tests?
Thank you and kind regards
Code:
regress ewportexc_t mktrf smb hml [aweight=number] (sum of wgt is 4.2480e+04) Source | SS df MS Number of obs = 214 -------------+------------------------------ F( 3, 210) = 190.66 Model | .688963173 3 .229654391 Prob > F = 0.0000 Residual | .252948617 210 .001204517 R-squared = 0.7315 -------------+------------------------------ Adj R-squared = 0.7276 Total | .94191179 213 .004422121 Root MSE = .03471 ------------------------------------------------------------------------------ ewportexc_t | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- mktrf | 1.153562 .0507859 22.71 0.000 1.053446 1.253677 smb | .2523661 .0632534 3.99 0.000 .1276731 .3770591 hml | .436299 .067152 6.50 0.000 .3039206 .5686773 _cons | .0003275 .0024164 0.14 0.892 -.0044361 .005091 ------------------------------------------------------------------------------
Comment