-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRegression.do
85 lines (54 loc) · 3.51 KB
/
Regression.do
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/* Hospitalizations*/
reg hospital1 micro_metro remote_rural adj_rural /*
*/ + percent_non_white percent_female tenure /*
*/ not_for_profit poverty percap_hosp_bed14 percap_pcp_15 percent_dual , cluster(state)
outreg2 using updated_hospital.doc, replace
reg hospital1 micro_metro remote_rural adj_rural average_number_of_total_visits_p/*
*/ distinct_beneficiaries__non_lupa percent_non_white percent_female tenure /*
*/ not_for_profit poverty percap_hosp_bed14 percap_pcp_15 percent_dual , cluster(state)
outreg2 using updated_emergency.doc, append
/* Emergency*/
reg emergency1 micro_metro remote_rural adj_rural /*
*/ distinct_beneficiaries__non_lupa percent_non_white percent_female tenure /*
*/ not_for_profit poverty percap_hosp_bed14 percap_pcp_15 percent_dual , cluster(state)
outreg2 using updated_hospital.doc, replace
reg emergency1 micro_metro remote_rural adj_rural average_number_of_total_visits_p/*
*/ distinct_beneficiaries__non_lupa percent_non_white percent_female tenure /*
*/ not_for_profit poverty percap_hosp_bed14 percap_pcp_15 percent_dual , cluster(state)
outreg2 using updated_emergency.doc, append
/* ADL Score*/
reg daily_score micro_metro remote_rural adj_rural /*
*/ distinct_beneficiaries__non_lupa percent_non_white percent_female tenure /*
*/ not_for_profit poverty percap_hosp_bed14 percap_pcp_15 percent_dual average_hcc_score, cluster(state)
outreg2 using updated_daily.doc, replace
reg daily_score micro_metro remote_rural adj_rural average_number_of_total_visits_p/*
*/ distinct_beneficiaries__non_lupa percent_non_white percent_female tenure /*
*/ not_for_profit poverty percap_hosp_bed14 percap_pcp_15 percent_dual average_hcc_score, cluster(state)
outreg2 using updated_daily.doc, append
/*harm score*/
reg harm_score micro_metro remote_rural adj_rural /*
*/ distinct_beneficiaries__non_lupa percent_non_white percent_female tenure /*
*/ not_for_profit poverty percap_hosp_bed14 percap_pcp_15 percent_dual average_hcc_score, cluster(state)
outreg2 using updated_harm.doc, replace
reg harm_score micro_metro remote_rural adj_rural average_number_of_total_visits_p/*
*/ distinct_beneficiaries__non_lupa percent_non_white percent_female tenure /*
*/ not_for_profit poverty percap_hosp_bed14 percap_pcp_15 percent_dual average_hcc_score, cluster(state)
outreg2 using updated_harm.doc, append
/* Pain Score */
reg harm_score micro_metro remote_rural adj_rural /*
*/ distinct_beneficiaries__non_lupa percent_non_white percent_female tenure /*
*/ not_for_profit poverty percap_hosp_bed14 percap_pcp_15 percent_dual average_hcc_score, cluster(state)
outreg2 using updated_harm.doc, replace
reg harm_score micro_metro remote_rural adj_rural average_number_of_total_visits_p/*
*/ distinct_beneficiaries__non_lupa percent_non_white percent_female tenure /*
*/ not_for_profit poverty percap_hosp_bed14 percap_pcp_15 percent_dual average_hcc_score, cluster(state)
outreg2 using updated_harm.doc, append
/*Wound Score*/
reg wound_score micro_metro remote_rural adj_rural /*
*/ distinct_beneficiaries__non_lupa percent_non_white percent_female tenure /*
*/ not_for_profit poverty percap_hosp_bed14 percap_pcp_15 percent_dual average_hcc_score, cluster(state)
outreg2 using updated_wound.doc, replace
reg wound_score micro_metro remote_rural adj_rural average_number_of_total_visits_p/*
*/ distinct_beneficiaries__non_lupa percent_non_white percent_female tenure /*
*/ not_for_profit poverty percap_hosp_bed14 percap_pcp_15 percent_dual average_hcc_score, cluster(state)
outreg2 using updated_wound.doc, append