I'm sorry for bothering you with this small detail, but couldn't seem to figure it out..
I'm trying to figure out of the result for ArticleAppearance on wtradingvolume is larger for larger firms. This is done by creating size3 and size4 out of the variable size. (With size3 being the 'lower' half of the results, and size4 being the 50% highest results)
The code I used is the following:
Results that I get are:
Now my stupid small question: How to interpret my results?
I can't seem to figure out what Stata picks as H0 and H1, and so what to conclude from the results..
Many thanks in advance,
Nienke
I'm trying to figure out of the result for ArticleAppearance on wtradingvolume is larger for larger firms. This is done by creating size3 and size4 out of the variable size. (With size3 being the 'lower' half of the results, and size4 being the 50% highest results)
The code I used is the following:
Code:
regress wtradingvolume ArticleAppearance wlagReturns size3 wleverage wcashtoassets wbooktomarket Ratings i.GlobalCompanyKey i.DayofWeek i.MonthofYear i.sic3 estimates store regr_A regress wtradingvolume ArticleAppearance wlagReturns size4 wleverage wcashtoassets wbooktomarket Ratings i.GlobalCompanyKey i.DayofWeek i.MonthofYear i.sic3 estimates store regr_B suest regr_A regr_B, vce(cluster Ticker) test [regr_A_mean]ArticleAppearance==[regr_B_mean]ArticleAppearance
Code:
( 1) [regr_A_mean]ArticleAppearance - [regr_B_mean]ArticleAppearance = 0 chi2( 1) = 12.88 Prob > chi2 = 0.0003
I can't seem to figure out what Stata picks as H0 and H1, and so what to conclude from the results..
Many thanks in advance,
Nienke
Comment