Human Height
What does a tall person do when they see an airplane coming? Duck.
@kaggle.programmerrdai_human_height
What does a tall person do when they see an airplane coming? Duck.
@kaggle.programmerrdai_human_height
Humans are the most abundant and widespread species of primate, characterized by bipedalism and large, complex brains. This has enabled the development of advanced tools, culture, and language. Wikipedia
Higher classification: Homo
Rank: Species
Scientific name: Homo sapiens
Order: Primates
Height: 1.7 m (Male), 1.6 m (Female)
Speed: 13 km/h (Male, Running), 10 km/h (Female, Running)
@article{owidhumanheight,
author = {Max Roser and Cameron Appel and Hannah Ritchie},
title = {Human Height},
journal = {Our World in Data},
year = {2013},
note = {https://ourworldindata.org/human-height}
}
CREATE TABLE absolute_gains_in_mean_female_height (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"change_in_female_height_cm" DOUBLE -- Change In Female Height (cm)
);CREATE TABLE annual_change_in_average_female_height (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"year_on_year_change_in_female_height" DOUBLE -- Year-on-year Change In Female Height (%)
);CREATE TABLE annual_change_in_average_male_height (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"year_on_year_change_in_male_height" DOUBLE -- Year-on-year Change In Male Height (%)
);CREATE TABLE average_height_by_year_of_birth (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"mean_male_height_cm" DOUBLE -- Mean Male Height (cm),
"mean_female_height_cm" DOUBLE -- Mean Female Height (cm)
);CREATE TABLE average_height_of_men (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"mean_male_height_cm" DOUBLE -- Mean Male Height (cm)
);CREATE TABLE average_height_of_men_for_selected_countries (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"human_height_university_of_tuebingen_2015" DOUBLE -- Human Height (University Of Tuebingen (2015))
);CREATE TABLE average_height_of_women (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"mean_female_height_cm" DOUBLE -- Mean Female Height (cm)
);CREATE TABLE change_in_male_height_slope (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"mean_male_height_cm" DOUBLE -- Mean Male Height (cm),
"continent" VARCHAR
);CREATE TABLE child_mortality_rate_vs_mean_male_height_cm (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"mortality_rate_under_5_per_1_000_live_births" DOUBLE -- Mortality Rate, Under-5 (per 1,000 Live Births),
"mean_male_height_cm" DOUBLE -- Mean Male Height (cm),
"continent" VARCHAR
);CREATE TABLE human_development_index_vs_mean_male_height (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"human_development_index_undp" DOUBLE -- Human Development Index (UNDP),
"mean_male_height_cm" DOUBLE -- Mean Male Height (cm),
"continent" VARCHAR
);CREATE TABLE increase_male_vs_female_height (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"change_in_male_height" DOUBLE -- Change In Male Height (%),
"change_in_female_height" DOUBLE -- Change In Female Height (%),
"continent" VARCHAR
);CREATE TABLE male_to_female_height_ratio (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"male_to_female_height_ratio" DOUBLE
);CREATE TABLE mean_height_males_vs_females (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"mean_male_height_cm" DOUBLE -- Mean Male Height (cm),
"mean_female_height_cm" DOUBLE -- Mean Female Height (cm),
"continent" VARCHAR
);CREATE TABLE share_of_calories_from_animal_protein_vs_mean_male_height (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"calories_from_animal_protein_fao_2017" DOUBLE -- Calories From Animal Protein (FAO (2017)),
"mean_male_height_cm" DOUBLE -- Mean Male Height (cm),
"continent" VARCHAR
);Anyone who has the link will be able to view this.