on
Child Parent interaction in Korea
1. Introduction
- The data is collected from PISA(Programme for International Student Assessment).
- Country: Korea
- Students’ age: HighSchool 1stGrade
- A fosterer has responded to several questionnaire. And this report analyzes data obtained from those questionnaire.
- Explanation of variables
- Early : Child regularly attended prior to <grade 1 in ISCED 1>: Early childhood educational development […] 0: No, 1: Yes
- Care :
, participation hindered: I had no one to take care of my child/ children. 0: There was no one, 1: There was someone - Parent : Who will complete this questionnaire? 0: Father, 1: Mother
- Talk : Activities with your child, how often: Spend time just talking to my child 1: Never or hardly ever 2: Once or twice a year 3: Once or twice a month 4: Once or twice a week 5: Every day or almost every day
- Lastly, this report is to analyze the relationship among ‘Talk’, ‘Early’, ‘Care’, ‘Parent’.
2. Eploratory Data Analysis
## # A tibble: 11 x 5
## Early Care Parent Talk n
## <int> <dbl> <int> <dbl> <int>
## 1 0 NA NA NA 1011
## 2 1 NA NA NA 4382
## 3 NA 0 NA NA 687
## 4 NA 1 NA NA 4706
## 5 NA NA 0 NA 828
## 6 NA NA 1 NA 4565
## 7 NA NA NA 1 31
## 8 NA NA NA 2 62
## 9 NA NA NA 3 569
## 10 NA NA NA 4 2222
## 11 NA NA NA 5 2509
3. Selecting Model
Proportional and Unproportional
fit1 <- vglm(cbind(Never, Year, Month, Week, Day)~ Early + Care + Parent,
family = cumulative(parallel = TRUE), data = rdata)
fit2 <- vglm(cbind(Never, Year, Month, Week, Day)~ Early + Care + Parent,
family = cumulative(parallel = FALSE), data = rdata)
Δχ2=Devianceproportional−Devianceunproportional = 11061.27-11051.1=10.17
df=dfproportional−dfunproportional = 21565-21556=9
χ2.05(9) = 16.9189776 Since 16.9189776 > 10.17, choose proportional model.
Dropping ‘Early’
fit_without_Early <- vglm(cbind(Never, Year, Month, Week, Day)~ Care + Parent,
family = cumulative(parallel = TRUE), data = rdata)
Δχ2=DeviancewithoutEarly−Devianceproportional = 11061.35-11061.27=0.08
df=dfwithoutEarly−dfproportional = 21566-21565=1
χ2.05(1) = 3.8414588 Since 3.8414588 > 0.08, choose model without ‘Early’.
4. Model
- Model : logitP(YTalk≤j)=αj+β1XCare+β2XParent
That is, logitP(YTalk≤j)=αj−0.35023XCare−0.80328XParent, whereαNever=−4.22657,αYear=−3.11453,αMonth=−1.02188,αWeek=1.13272. Since β1<0, when there is someone to take care of the child(i.e., XCare=1), p(havingmoretimetotalk) increases. Since β2<0, when the mother of the child responded to the questionnaire(i.e., XParent=1), p(havingmoretimetotalk) increases.
5. Discussion
The result implies that the exsistence of child care which is indicated by Care is related to child-parent interaction, and implies that gender of the respondent of the questionnaire which is indicated by Parent is related to child-parent interaction. It is suggested that further study should be conducted for discovering the reasons that why only 0.1440714% of the respondents responded that there is no one to take care of their child and why only 0.1813801% of the respondents was father.