~dricottone/replications

ref: da6b7478a8a7062ac7fd75977abc3d9c9c6c8fc7 replications/AS04/Table 2.sas -rw-r--r-- 605 bytes
da6b7478Dominic Ricottone Incomplete work on AS04 5 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* The following lines should match the import routine */
libname library '~/data/anes';

/* Democrats */
proc freq data=library.as04_d;
  tables (conserv_d_alt entitlement_d govtspend_d blackaid_d affact1_d affact2_d womenrole_d abortlegal_d)*activity / noprint measures;
run;
/* not matching on affact and womenrole */
/* close enough on abortlegal (reported .113 vs replicated .111) */

/* Republicans */
proc freq data=library.as04_r;
  tables (conserv_r entitlement_r govtspend_r blackaid_r affact1_r affact2_r womenrole_r abortlegal_r)*activity / noprint measures;
run;
/* not matching on affact */