Pregnancy Data
Pregnancies between 1960 and 1967 among women in the San Francisco East Bay area
@kaggle.debjeetdas_babies_birth_weight
Pregnancies between 1960 and 1967 among women in the San Francisco East Bay area
@kaggle.debjeetdas_babies_birth_weight
Pregnancy, Child, Birth, Mother, Health, Child Weight
By: [source]
The Child Health and Development Studies investigate a range of topics. One study, in particular, considered all pregnancies between 1960 and 1967 among women in the Kaiser Foundation Health Plan in the San Francisco East Bay area. We do not have ideal provenance for these data. For a better documented and more recent dataset on a similar topic with similar variables, see births14. Additionally, Gestation dataset in the mosaicData package also contains similar data.
| Field Name | Description |
|---|---|
| case | id number |
| bwt | birthweight, in ounces |
| gestation | length of gestation, in days |
| parity | binary indicator for a first pregnancy (0 = first pregnancy) |
| age | mother's age in years |
| height | mother's height in inches |
| weight | mother's weight in pounds |
| smoke | binary indicator for whether the mother smokes |
CREATE TABLE babies (
"case" BIGINT,
"bwt" BIGINT,
"gestation" DOUBLE,
"parity" BIGINT,
"age" DOUBLE,
"height" DOUBLE,
"weight" DOUBLE,
"smoke" DOUBLE
);Anyone who has the link will be able to view this.