Advertisement
Guest User

EJMR

a guest
Feb 16th, 2018
407
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.35 KB | None | 0 0
  1. ------------------------------------------------------------------------------------
  2.  
  3. ------------------------------------------------------------------------
  4. name: <unnamed>
  5. log: C:\Users\Kirk\EJMR.log
  6. log type: text
  7. opened on: 17 Feb 2018, 02:10:07
  8.  
  9. . set more off
  10.  
  11. .
  12. . use "C:\Users\Kirk\Data.dta", clear
  13.  
  14. .
  15. . *Labels
  16. . label variable cetr "Cash ETR"
  17.  
  18. . label variable getrd "GAAP ETR"
  19.  
  20. . label variable lagcetr "Lag Cash ETR"
  21.  
  22. . label variable laggetr "Lag GAAP ETR"
  23.  
  24. . label variable ior9 "IO"
  25.  
  26. .
  27. . *Other variable descriptions:
  28. . *"rj" is an indicator variable equal to 1 if the firm is in the Russell 2000 (0 if
  29.  
  30. Russell 1000) in reconstitution year t
  31. . *"junerank" is the ranking based on the Russell-provided June index weights.
  32. . *"rank" is the ranking based on market capitalization at the end of May from CRSP.
  33. . *The "june/rank1000" variables are the rankings centered at 1000.
  34. . *"maymve" is market capitalization at the end of May from CRSP.
  35. . *"june/rankd" is the interaction of "rj" and the ranking variable.
  36. .
  37. . // AB and SK code
  38. . drop rank1000 rankd
  39.  
  40. . sort rj year maymve
  41.  
  42. . quietly by rj year: gen rank1000=cond(_N==1,0,_n) // Re-rank within index
  43.  
  44. . replace rank1000=rank1000-1000 if rj==0
  45. (10993 real changes made)
  46.  
  47. . gen rankd=rank1000*rj
  48.  
  49. .
  50. . reg maymve rj rank1000 rankd i.year, r cl(permno)
  51.  
  52. Linear regression Number of obs = 32964
  53. F( 13, 6475) = 279.19
  54. Prob > F = 0.0000
  55. R-squared = 0.2822
  56. Root MSE = 13435
  57.  
  58. (Std. Err. adjusted for 6476 clusters in permno)
  59. ------------------------------------------------------------------------------
  60. | Robust
  61. maymve | Coef. Std. Err. t P>|t| [95% Conf. Interval]
  62. -------------+----------------------------------------------------------------
  63. rj | -31364.32 2489.285 -12.60 0.000 -36244.14 -26484.5
  64. rank1000 | 41.90074 3.714215 11.28 0.000 34.61965 49.18183
  65. rankd | -41.35708 3.714282 -11.13 0.000 -48.6383 -34.07586
  66. |
  67. year |
  68. 1997 | 511.7376 82.97699 6.17 0.000 349.0752 674.3999
  69. 1998 | 1343.157 137.2277 9.79 0.000 1074.145 1612.168
  70. 1999 | 1952.251 223.0467 8.75 0.000 1515.005 2389.496
  71. 2000 | 2606.53 315.8683 8.25 0.000 1987.324 3225.736
  72. 2001 | 2187.218 269.6485 8.11 0.000 1658.618 2715.818
  73. 2002 | 1667.576 213.4064 7.81 0.000 1249.229 2085.923
  74. 2003 | 1345.776 203.3764 6.62 0.000 947.091 1744.461
  75. 2004 | 2088.154 234.1592 8.92 0.000 1629.124 2547.183
  76. 2005 | 2376.089 239.2053 9.93 0.000 1907.167 2845.01
  77. 2006 | 2768.279 242.4165 11.42 0.000 2293.062 3243.495
  78. |
  79. _cons | 29639.37 2338.173 12.68 0.000 25055.78 34222.96
  80. ------------------------------------------------------------------------------
  81.  
  82. .
  83. end of do-file
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement