Advertisement
brandonwyk

Untitled

Nov 29th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. ***********************************************************
  2. *Creates Table 3: Determinants of Institutions
  3. ***********************************************************
  4. clear
  5. capture log close
  6. cd G:\daron\colonial_origins
  7. log using maketable3, replace
  8.  
  9. /*Data Files Used
  10. colonial_origins.dta
  11.  
  12. *Data Files Created as Final Product
  13. none
  14.  
  15. *Data Files Created as Intermediate Product
  16. none*/
  17.  
  18.  
  19. use maketable3, clear
  20. keep if excolony==1
  21. keep if extmort4!=.
  22. replace euro1900=euro1900 / 100
  23.  
  24. *******************
  25. *--Panel A
  26. *******************
  27.  
  28. *--Dependent Variable Is Average Protection Against Exproptiation Risk in 1985-1995
  29.  
  30. *col 1
  31. reg avexpr cons00a if excolony==1 & extmort4~=.
  32. *col 2
  33. reg avexpr lat_abst cons00a if excolony==1 & extmort4~=.
  34. *col 3
  35. reg avexpr democ00a if excolony==1 & extmort4~=.
  36. *col 4
  37. reg avexpr democ00a lat_abst if excolony==1 & extmort4~=.
  38. *col 5
  39. reg avexpr indtime cons1 if excolony==1 & extmort4~=.
  40. *col 6
  41. reg avexpr indtime cons1 lat_abst if excolony==1 & extmort4~=.
  42. *col 7
  43. reg avexpr euro1900 if excolony==1 & extmort4~=.
  44. *col 8
  45. reg avexpr euro1900 lat_abst if excolony==1 & extmort4~=.
  46. *col 9
  47. reg avexpr logem4 if excolony==1 & extmort4~=. & logpgp95~=.
  48. *col 10
  49. reg avexpr logem4 lat_abst if excolony==1 & extmort4~=. & logpgp95~=.
  50.  
  51. ***************
  52. ***---Panel B
  53. ***************
  54.  
  55. *col 1
  56. reg cons00a euro1900 if excolony==1 & extmort4~=. & logpgp95~=.
  57. * col 2
  58. reg cons00a euro1900 lat_abst if excolony==1 & extmort4~=. & logpgp95~=.
  59. *col 3
  60. reg cons00a logem4 if excolony==1 & extmort4~=.
  61. *col 4
  62. reg cons00a lat_abst logem4 if excolony==1 & extmort4~=.
  63. *col 5
  64. reg democ00a euro1900 if excolony==1 & extmort4~=. & logpgp95~=.
  65. *col 6
  66. reg democ00a lat_abst euro1900 if excolony==1 & extmort4~=. & logpgp95~=.
  67. *col 7
  68. reg democ00a logem4 if excolony==1 & extmort4~=. & logpgp95~=.
  69. *col 8
  70. reg democ00a lat_abst logem4 if excolony==1 & extmort4~=. & logpgp95~=.
  71. *col 9
  72. reg euro1900 logem4 if excolony==1 & extmort4~=. & logpgp95~=.
  73. *col 10
  74. reg euro1900 lat_abst logem4 if excolony==1 & extmort4~=. & logpgp95~=.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement