Baselight

Child IQ Vs Mother And Father IQs

Predict a child's IQ from his/her mother's

@kaggle.jacopoferretti_child_vs_mother_iq

Loading...
Loading...

About this Dataset

Child IQ Vs Mother And Father IQs

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.


Tables

Babies

@kaggle.jacopoferretti_child_vs_mother_iq.babies
  • 19.04 KB
  • 1236 rows
  • 8 columns
Loading...

CREATE TABLE babies (
  "case" BIGINT,
  "bwt" BIGINT,
  "gestation" DOUBLE,
  "parity" BIGINT,
  "age" DOUBLE,
  "height" DOUBLE,
  "weight" DOUBLE,
  "smoke" DOUBLE
);

Child Iq

@kaggle.jacopoferretti_child_vs_mother_iq.child_iq
  • 6.47 KB
  • 400 rows
  • 4 columns
Loading...

CREATE TABLE child_iq (
  "unnamed_0" BIGINT,
  "ppvt" BIGINT,
  "educ_cat" BIGINT,
  "momage" BIGINT
);

Gifted

@kaggle.jacopoferretti_child_vs_mother_iq.gifted
  • 6.45 KB
  • 36 rows
  • 8 columns
Loading...

CREATE TABLE gifted (
  "score" BIGINT,
  "fatheriq" BIGINT,
  "motheriq" BIGINT,
  "speak" BIGINT,
  "count" BIGINT,
  "read" DOUBLE,
  "edutv" DOUBLE,
  "cartoons" DOUBLE
);

Kid Iq

@kaggle.jacopoferretti_child_vs_mother_iq.kid_iq
  • 11.17 KB
  • 434 rows
  • 6 columns
Loading...

CREATE TABLE kid_iq (
  "unnamed_0" BIGINT,
  "kid_score" BIGINT,
  "mom_hs" BIGINT,
  "mom_iq" DOUBLE,
  "mom_work" BIGINT,
  "mom_age" BIGINT
);

Twins

@kaggle.jacopoferretti_child_vs_mother_iq.twins
  • 2.96 KB
  • 27 rows
  • 3 columns
Loading...

CREATE TABLE twins (
  "foster" BIGINT,
  "biological" BIGINT,
  "social" VARCHAR
);

Share link

Anyone who has the link will be able to view this.