Child IQ Vs Mother And Father IQs
Predict a child's IQ from his/her mother's
@kaggle.jacopoferretti_child_vs_mother_iq
Predict a child's IQ from his/her mother's
@kaggle.jacopoferretti_child_vs_mother_iq
There are 4 different datasets. The first two of them have a similar structure, the third and fourth are different.
FILES child_iq.csv & kid_iq.csv
Predict a child's IQ from his/her mother's age at childbirth, IQ, level of instruction ...
The data is from the Department of Statistics of the Columbia University in NYC.
FILE gifted.csv
Child's score in a test of analytical skills vs mom and father's IQ plus other features.
The data is from a study by Graybill and Iyer, published in 1994
FILE twins.csv
In the mid 20th century, a study was conducted that tracked down identical twins that were separated at birth: one child was raised in the home of their biological parents and the other in a foster home. In an attempt to answer the question of whether intelligence is result of nature or nurture, both children were given IQ tests.
CREATE TABLE babies (
"case" BIGINT,
"bwt" BIGINT,
"gestation" DOUBLE,
"parity" BIGINT,
"age" DOUBLE,
"height" DOUBLE,
"weight" DOUBLE,
"smoke" DOUBLE
);CREATE TABLE child_iq (
"unnamed_0" BIGINT -- Unnamed: 0,
"ppvt" BIGINT,
"educ_cat" BIGINT,
"momage" BIGINT
);CREATE TABLE gifted (
"score" BIGINT,
"fatheriq" BIGINT,
"motheriq" BIGINT,
"speak" BIGINT,
"count" BIGINT,
"read" DOUBLE,
"edutv" DOUBLE,
"cartoons" DOUBLE
);CREATE TABLE kid_iq (
"unnamed_0" BIGINT -- Unnamed: 0,
"kid_score" BIGINT,
"mom_hs" BIGINT,
"mom_iq" DOUBLE,
"mom_work" BIGINT,
"mom_age" BIGINT
);CREATE TABLE twins (
"foster" BIGINT,
"biological" BIGINT,
"social" VARCHAR
);Anyone who has the link will be able to view this.