Weight Among Adults
Normal weight, Overweight & Obesity by Selected Population Characteristics
@kaggle.melissamonfared_weight_among_adults
Normal weight, Overweight & Obesity by Selected Population Characteristics
@kaggle.melissamonfared_weight_among_adults
This dataset provides data on the prevalence of normal weight, overweight, and obesity among adults aged 20 and over, segmented by various population characteristics. The data is sourced from the National Health and Nutrition Examination Survey (NHANES) conducted by the National Center for Health Statistics (NCHS). This dataset is invaluable for understanding the distribution and trends of weight-related health metrics across different demographics in the United States.
Source:
Source URLs:
This dataset includes data collected over multiple time periods, providing insights into the weight distribution among adults aged 20 and over. Key features include segmentation by sex and specific age ranges.
| Column Name | Description |
|---|---|
| INDICATOR | Indicator for the data type, e.g., Normal weight |
| PANEL | Panel identifier for the survey |
| PANEL_NU | Numerical value representing the panel |
| UNIT | Unit of measurement, e.g., Percent of population |
| UNIT_NU | Numerical value representing the unit |
| STUB_NA | Stub name for category, e.g., Total |
| STUB_LA | Label for the stub category, e.g., All persons |
| YEAR | The year or period the data was recorded |
| YEAR_NUM | Numerical value representing the year or period |
| AGE | Age group category, e.g., 20 years and over |
| AGE_NUM | Numerical value representing the age group |
| ESTIMATE | Estimated percentage |
| SE | Standard error of the estimate |
CREATE TABLE weight (
"indicator" VARCHAR,
"panel" VARCHAR,
"panel_num" BIGINT,
"unit" VARCHAR,
"unit_num" BIGINT,
"stub_name" VARCHAR,
"stub_name_num" BIGINT,
"stub_label" VARCHAR,
"stub_label_num" DOUBLE,
"year" VARCHAR,
"year_num" BIGINT,
"age" VARCHAR,
"age_num" DOUBLE,
"estimate" DOUBLE,
"se" DOUBLE
);Anyone who has the link will be able to view this.