Displaying 1 result from an estimated 1 matches for "kindergarten_attendance".
2012 Feb 23
1
Case weighting
.../www.pisa.oecd.org)
In the data there are many cases and each of them carries a numeric
variable that signifies it's weight.
In SPSS the command would be "WEIGHT BY"
In simpler words here is an R sample ( What is get VS what i want to get )
> data.recieved <- data.frame(
+ kindergarten_attendance = factor(c(2,1,1,1), labels = c("Yes", "No")),
+ weight=c(10, 1, 1, 1)
+ );
> data.recieved;
kindergarten_attendance weight
1 No 10
2 Yes 1
3 Yes 1
4 Yes 1
>
>
>
>...