// Task 1 routine setup capture log close set more off estimates clear log using cda02b-ex2.log, replace text version 9.2 set scheme s2mono // pgm: cda02b-ex2.do // task: 2 - Linear Regression - Excercise // project: CDA Lab Guide // author: your name // date: today's date use science3, clear // Task 2: Keep four variables including cit9, fel, female and mcit3. // Examine thesr variables, drop missing cases, and draw scatter plots. // Step 2.1 keep the variables cit9, fel, female and mcit3. // Step 2.2 examine variables // Step 2.3 drop missing cases. // Step 2.4 graph matrix to explore your variables. // Task 3: Estimate an OLS regression and list coefficients. // Step 3.1 run a regression of cit9 on fel, female and mcit3. // Step 3.2 list the standardized coefficients // Task 4: Interpret the standardized and unstandardized coefficients. // Task 4a: Interpret the unstandardized effect of fel on cit9. /* Type your answer here */ // Task 4b: Interpret the standardized effects of fel on cit9. /* Type your answer here ** x-standardized: ** y-standardized: ** fully-standardized: */ // Task 4c: Interpret the unstandardized effect of being female on cit9. /* Type your answer here */ // Step 4d Interpret the standardized effects of being female on cit9. /* Type your answer here ** y-standardized */ log close exit