Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Download the 2 0 0 9 Korean Children's Panel data, codebook, and questionnaire. Search for Korean Children's Panel on Naver or Google > Access the

Download the 2009 Korean Children's Panel data, codebook, and questionnaire.
Search for "Korean Children's Panel" on Naver or Google > Access the Korean Children's Panel website > Data room > Raw data >1st (2009)
Download the "Stata" column (if you are doing the assignment in R or another program, download csv or Stata's dta)
Download the questionnaire in the first row of the "Questionnaire" column.
Download the "Integrated Codebook" above the data list
Load the downloaded data into statistical software.
2.1 Remove variables except main variables.
Refer to "Integrated Codebook" for explanations of each variable.
2.2 Change the names of major variables to be more intuitive.
Print summary statistics.
What is the max value of child weight?
Why are large values like above included in the data?
Organize non-response data.
Create a variable representing the mother's stress during childbirth.
Create a binary variable (dummy variable) indicating smoking and drinking during pregnancy.
Let's say we want to know the effect of maternal drinking during pregnancy on the child's birth weight.
Establish an appropriate multiple linear regression model to estimate the causal effect and output the regression analysis results.
Among the results output above, interpret all that you can interpret related to the parameter of interest (vowel attention coefficient).
Step 1: Load the Data into RStep 3: Print Summary Statisticssummary(main_vars)max_weight - max(main_vars$, na.rm = TRUE)print(paste("Max value of child weight:", max_weight))Step 4: Organize Non-Response Datamain_vars - main_vars %>%mutate(across(everything(), na_if(.x,99999999)))Step 5: Create a Variable Representing the Mother's Stress During Childbirthmain_vars - main_vars %>%mutate(=1+2+3+4+5+6)Step 6: Create a Binary Variable Indicating Smoking and Drinking During Pregnancymain_vars - main_vars %>%mutate(= ifelse(==2,0,),= ifelse(==2|==3,0,),= ifelse(==3,0,))
Step 7: Regression Analysis
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions