41 datasets found
  1. census-bureau-international

    • kaggle.com
    zip
    Updated May 6, 2020
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Google BigQuery (2020). census-bureau-international [Dataset]. https://www.kaggle.com/bigquery/census-bureau-international
    Explore at:
    zip(0 bytes)Available download formats
    Dataset updated
    May 6, 2020
    Dataset provided by
    BigQueryhttps://cloud.google.com/bigquery
    Authors
    Google BigQuery
    Description

    Context

    The United States Census Bureau’s international dataset provides estimates of country populations since 1950 and projections through 2050. Specifically, the dataset includes midyear population figures broken down by age and gender assignment at birth. Additionally, time-series data is provided for attributes including fertility rates, birth rates, death rates, and migration rates.

    Querying BigQuery tables

    You can use the BigQuery Python client library to query tables in this dataset in Kernels. Note that methods available in Kernels are limited to querying data. Tables are at bigquery-public-data.census_bureau_international.

    Sample Query 1

    What countries have the longest life expectancy? In this query, 2016 census information is retrieved by joining the mortality_life_expectancy and country_names_area tables for countries larger than 25,000 km2. Without the size constraint, Monaco is the top result with an average life expectancy of over 89 years!

    standardSQL

    SELECT age.country_name, age.life_expectancy, size.country_area FROM ( SELECT country_name, life_expectancy FROM bigquery-public-data.census_bureau_international.mortality_life_expectancy WHERE year = 2016) age INNER JOIN ( SELECT country_name, country_area FROM bigquery-public-data.census_bureau_international.country_names_area where country_area > 25000) size ON age.country_name = size.country_name ORDER BY 2 DESC /* Limit removed for Data Studio Visualization */ LIMIT 10

    Sample Query 2

    Which countries have the largest proportion of their population under 25? Over 40% of the world’s population is under 25 and greater than 50% of the world’s population is under 30! This query retrieves the countries with the largest proportion of young people by joining the age-specific population table with the midyear (total) population table.

    standardSQL

    SELECT age.country_name, SUM(age.population) AS under_25, pop.midyear_population AS total, ROUND((SUM(age.population) / pop.midyear_population) * 100,2) AS pct_under_25 FROM ( SELECT country_name, population, country_code FROM bigquery-public-data.census_bureau_international.midyear_population_agespecific WHERE year =2017 AND age < 25) age INNER JOIN ( SELECT midyear_population, country_code FROM bigquery-public-data.census_bureau_international.midyear_population WHERE year = 2017) pop ON age.country_code = pop.country_code GROUP BY 1, 3 ORDER BY 4 DESC /* Remove limit for visualization*/ LIMIT 10

    Sample Query 3

    The International Census dataset contains growth information in the form of birth rates, death rates, and migration rates. Net migration is the net number of migrants per 1,000 population, an important component of total population and one that often drives the work of the United Nations Refugee Agency. This query joins the growth rate table with the area table to retrieve 2017 data for countries greater than 500 km2.

    SELECT growth.country_name, growth.net_migration, CAST(area.country_area AS INT64) AS country_area FROM ( SELECT country_name, net_migration, country_code FROM bigquery-public-data.census_bureau_international.birth_death_growth_rates WHERE year = 2017) growth INNER JOIN ( SELECT country_area, country_code FROM bigquery-public-data.census_bureau_international.country_names_area

    Update frequency

    Historic (none)

    Dataset source

    United States Census Bureau

    Terms of use: This dataset is publicly available for anyone to use under the following terms provided by the Dataset Source - http://www.data.gov/privacy-policy#data_policy - and is provided "AS IS" without any warranty, express or implied, from Google. Google disclaims all liability for any damages, direct or indirect, resulting from the use of the dataset.

    See the GCP Marketplace listing for more details and sample queries: https://console.cloud.google.com/marketplace/details/united-states-census-bureau/international-census-data

  2. d

    3-digit occupation code images from the Norwegian census of 1950 - Manual...

    • search.dataone.org
    • dataverse.no
    • +1more
    Updated Sep 25, 2024
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    The Norwegian Historical Data Centre (2024). 3-digit occupation code images from the Norwegian census of 1950 - Manual review dataset [Dataset]. http://doi.org/10.18710/LYXKN1
    Explore at:
    Dataset updated
    Sep 25, 2024
    Dataset provided by
    DataverseNO
    Authors
    The Norwegian Historical Data Centre
    Time period covered
    Dec 1, 1950
    Description

    This dataset is made up of images containing handwritten 3-digit occupation codes from the Norwegian population census of 1950. The occupation codes were added to the census sheets by Statistics Norway after the census was concluded for the purpose of creating aggregated occupational statistics for the entire population. The coding standard used in the 1950 census is, according to Statistics Norway’s official publications (https://www.ssb.no/historisk-statistikk/folketellinger/folketellingen-1950, booklet 4, page 81), very similar to the standards used in the census for 1920. Cf. the 13th booklet published for the 1920 census (https://www.ssb.no/historisk-statistikk/folketellinger/folketellingen-1920, note that this booklet is only available in Norwegian). In short, an occupation code is a 3-digit number that corresponds to a given occupation or type of occupation. According to the official list of occupation codes provided by Statistics Norway there are 339 unique codes. These are not all necessarily sequential or hierarchical in general, but some subgroupings are. This list can be found under Files. It is also worth noting that these images were extracted from the original census sheet images algorithmically. This process was not flawless and lead to additional images being extracted, these can contain written occupation titles or be left entirely blank. The dataset consists of 90,000 unique images, and 9,000 images that were randomly selected and copied from the unique images. These were all used for a research project (link to preprint article: https://doi.org/10.48550/arXiv.2306.16126) where we (author list can be found in preprint) tried to find a more efficient way of reviewing and correcting classification results from a Machine Learning model, where the results did not pass a pre-set confidence threshold. This was a follow-up to our previous article where we describe the initial project and creating of our model in more detail, if it is of interest (“Lessons Learned Developing and Using a Machine Learning Model to Automatically Transcribe 2.3 Million Handwritten Occupation Codes”, https://doi.org/10.51964/hlcs11331).

  3. United States International Census

    • kaggle.com
    zip
    Updated Aug 30, 2019
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    US Census Bureau (2019). United States International Census [Dataset]. https://www.kaggle.com/datasets/census/census-bureau-international
    Explore at:
    zip(0 bytes)Available download formats
    Dataset updated
    Aug 30, 2019
    Dataset provided by
    United States Census Bureauhttp://census.gov/
    Authors
    US Census Bureau
    License

    https://creativecommons.org/publicdomain/zero/1.0/https://creativecommons.org/publicdomain/zero/1.0/

    Area covered
    United States
    Description

    Context

    The United States Census Bureau’s International Dataset provides estimates of country populations since 1950 and projections through 2050.

    Content

    The U.S. Census Bureau provides estimates and projections for countries and areas that are recognized by the U.S. Department of State that have a population of at least 5,000. Specifically, the data set includes midyear population figures broken down by age and gender assignment at birth. Additionally, they provide time-series data for attributes including fertility rates, birth rates, death rates, and migration rates.

    Fork this kernel to get started.

    Acknowledgements

    https://bigquery.cloud.google.com/dataset/bigquery-public-data:census_bureau_international

    https://cloud.google.com/bigquery/public-data/international-census

    Dataset Source: www.census.gov

    This dataset is publicly available for anyone to use under the following terms provided by the Dataset Source -http://www.data.gov/privacy-policy#data_policy - and is provided "AS IS" without any warranty, express or implied, from Google. Google disclaims all liability for any damages, direct or indirect, resulting from the use of the dataset.

    Banner Photo by Steve Richey from Unsplash.

    Inspiration

    What countries have the longest life expectancy?

    Which countries have the largest proportion of their population under 25?

    Which countries are seeing the largest net migration?

  4. U

    Selected items from the Census of Agriculture at the county level for the...

    • data.usgs.gov
    • s.cnmilf.com
    • +1more
    Updated Feb 24, 2024
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Andrew LaMotte (2024). Selected items from the Census of Agriculture at the county level for the conterminous United States, 1950-2012 [Dataset]. http://doi.org/10.5066/F7H13016
    Explore at:
    Dataset updated
    Feb 24, 2024
    Dataset provided by
    United States Geological Surveyhttp://www.usgs.gov/
    Authors
    Andrew LaMotte
    License

    U.S. Government Workshttps://www.usa.gov/government-works
    License information was derived automatically

    Time period covered
    Jan 1, 1950 - Dec 31, 2012
    Area covered
    United States, Contiguous United States
    Description

    This metadata report documents tabular data sets consisting of items from the Census of Agriculture. These data are a subset of items from county-level data (including state totals) for the conterminous United States covering the census reporting years (every five years, with adjustments for 1978 and 1982) beginning with the 1950 Census of Agriculture and ending with the 2012 Census of Agriculture. Historical (1950-1997) data were extracted from digital files obtained through the Intra-university Consortium on Political and Social Research (ICPSR). More current (1997-2012) data were extracted from the National Agriculture Statistical Service (NASS) Census Query Tool for the census years of 1997, 2002, 2007, and 2012. Most census reports contain item values from the prior census for comparison. At times these values are updated or reweighted by the reporting agency; the Census Bureau prior to 1997 or NASS from 1997 on. Where available, the updated or reweighted data were used; othe ...

  5. T

    1950 Census Data for Austin, Texas

    • dataverse.tdl.org
    Updated Sep 30, 2024
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Amy Shreeve Bridges; Amy Shreeve Bridges (2024). 1950 Census Data for Austin, Texas [Dataset]. http://doi.org/10.18738/T8/VPYKE7
    Explore at:
    text/comma-separated-values(27849109)Available download formats
    Dataset updated
    Sep 30, 2024
    Dataset provided by
    Texas Data Repository
    Authors
    Amy Shreeve Bridges; Amy Shreeve Bridges
    License

    CC0 1.0 Universal Public Domain Dedicationhttps://creativecommons.org/publicdomain/zero/1.0/
    License information was derived automatically

    Area covered
    Austin, Texas
    Description

    This is the census data collected for Austin, Texas in 1950.

  6. d

    Tabular data for selected items from the Census of Agriculture for the...

    • catalog.data.gov
    • data.usgs.gov
    Updated Jul 6, 2024
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    U.S. Geological Survey (2024). Tabular data for selected items from the Census of Agriculture for the period 1950-2017 for counties in the conterminous United States [Dataset]. https://catalog.data.gov/dataset/tabular-data-for-selected-items-from-the-census-of-agriculture-for-the-period-1950-2017-fo
    Explore at:
    Dataset updated
    Jul 6, 2024
    Dataset provided by
    U.S. Geological Survey
    Area covered
    Contiguous United States, United States
    Description

    This product provides tabular data from the U.S. Department of Agriculture (USDA) Census of Agriculture for selected items for the period 1950-2017 for counties in the conterminous United States. Data from 1950-2012 are taken from LaMotte (2015) and 2017 data are retrieved from the USDA QuickStats online tool. Data which are withheld in the Census of Agriculture are filled with estimates. The data include crop production values for 12 commodities (for example, corn in bushels), land use values for 7 land use types (for example, acres of total cropland), and 9 values for livestock types (for example, number of hogs and pigs). The data are largely intended as a 2017 update to the LaMotte dataset for items of research interest. LaMotte, A.E., 2015, Selected items from the Census of Agriculture at the county level for the conterminous United States, 1950-2012: U.S. Geological Survey data release, http://dx.doi.org/10.5066/F7H13016.

  7. T

    1950 Census Data Map Shapefile

    • dataverse.tdl.org
    application/dbf +7
    Updated Sep 30, 2024
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Amy Shreeve Bridges; Amy Shreeve Bridges (2024). 1950 Census Data Map Shapefile [Dataset]. http://doi.org/10.18738/T8/KP8VLU
    Explore at:
    application/sbn(365108), application/sbx(15740), xml(19753), application/shx(289772), application/shp(1013936), bin(5), application/prj(145), application/dbf(411589465)Available download formats
    Dataset updated
    Sep 30, 2024
    Dataset provided by
    Texas Data Repository
    Authors
    Amy Shreeve Bridges; Amy Shreeve Bridges
    License

    CC0 1.0 Universal Public Domain Dedicationhttps://creativecommons.org/publicdomain/zero/1.0/
    License information was derived automatically

    Description

    This is the shapefile of the mapped 1950 census data for Austin, Texas.

  8. International Database: Time Series International Database 5-Year Age Groups...

    • catalog.data.gov
    Updated Aug 26, 2023
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    U.S. Census Bureau (2023). International Database: Time Series International Database 5-Year Age Groups and Sex and Other Demographic Variables [Dataset]. https://catalog.data.gov/dataset/international-data-base-time-series-international-data-base-by-5-year-age-groups-and-sex-i
    Explore at:
    Dataset updated
    Aug 26, 2023
    Dataset provided by
    United States Census Bureauhttp://census.gov/
    Description

    Midyear population estimates and projections for all countries and areas of the world with a population of 5,000 or more // Source: U.S. Census Bureau, Population Division, International Programs Center // Note: Total population available from 1950 to 2100 for 227 countries and areas. Other demographic variables available from base year to 2100. Base year varies by country and therefore data are not available for all years for all countries. For the United States, total population available from 1950-2060, and other demographic variables available from 1980-2060. See methodology at https://www.census.gov/programs-surveys/international-programs/about/idb.html

  9. International Database: Time Series International Database: International...

    • catalog.data.gov
    Updated Aug 26, 2023
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    U.S. Census Bureau (2023). International Database: Time Series International Database: International Populations by Single Year of Age and Sex [Dataset]. https://catalog.data.gov/dataset/international-data-base-time-series-international-database-international-populations-by-si
    Explore at:
    Dataset updated
    Aug 26, 2023
    Dataset provided by
    United States Census Bureauhttp://census.gov/
    Description

    Midyear population estimates and projections for all countries and areas of the world with a population of 5,000 or more // Source: U.S. Census Bureau, Population Division, International Programs Center// Note: Total population available from 1950 to 2100 for 227 countries and areas. Other demographic variables available from base year to 2100. Base year varies by country and therefore data are not available for all years for all countries. For the United States, total population available from 1950-2060, and other demographic variables available from 1980-2060. See methodology at https://www.census.gov/programs-surveys/international-programs/about/idb.html

  10. d

    County Boundaries for Selected Items from the Census of Agriculture,...

    • catalog.data.gov
    • data.usgs.gov
    • +3more
    Updated Jul 6, 2024
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    U.S. Geological Survey (2024). County Boundaries for Selected Items from the Census of Agriculture, 1950-2012 (COA_STCOFIPS) [Dataset]. https://catalog.data.gov/dataset/county-boundaries-for-selected-items-from-the-census-of-agriculture-1950-2012-coa-stcofips
    Explore at:
    Dataset updated
    Jul 6, 2024
    Dataset provided by
    U.S. Geological Survey
    Description

    This polygon shapefile provides county or county-equivalent boundaries for the conterminous United States and was created specifically for use with the data tables published as Selected Items from the Census of Agriculture for the Conterminous United States, 1950-2012 (LaMotte, 2015). This data layer is a modified version of Historic Counties for the 2000 Census of Population and Housing produced by the National Historical Geographic Information System (NHGIS) project, which is identical to the U.S. Census Bureau TIGER/Line Census 2000 file, with the exception of added shorelines. Excluded from the CAO_STCOFIPS boundary layer are Broomfield County, Colorado, Menominee County, Wisconsin, and the independent cities of Virginia with the exception of the 3 county-equivalent cities of Chesapeake City, Suffolk, and Virginia Beach. The census of agriculture was not taken in the District of Columbia for 1959, but available data indicate few if any farms in that area, the polygon was left in place to preserve the areas of the surrounding counties. Baltimore City, Maryland was combined with Baltimore County and the St. Louis City, Missouri, was combined with St. Louis County. La Paz County, Arizona was combined with Yuma County, Arizona and Cibola County, New Mexico was combined with Valencia County, New Mexico. Minor county border changes were at a level of precision beyond the scope of the data collection. A major objective of the census data tabulation is to maintain a reasonable degree of comparability of agricultural data from census to census. The tabular data collection is from 14 different censuses where definitions and data collection techniques may change over time and while the data are mostly comparable, a degree of caution should be exercised when using the data in analysis procedures. While the data are at a county-level resolution, a regional approach is more appropriate than a county-by-county analysis. The main purpose of this layer is to provide a base to generate a county raster for the allocation of agricultural census values to specific (agricultural) pixels. Vector format is provided so the raster pixel size can be user designated. References cited: LaMotte, A.E., 2015, Selected items from the Census of Agriculture at the county level for the conterminous United States, 1950-2012: U.S. Geological Survey data release, http://dx.doi.org/10.5066/F7H13016. National Historical Geographic Information System, Minnesota Population Center, 2004, Historic counties for the 2000 census of population and housing: Minneapolis, MN, University of Minnesota, accessed 03/18/2013 at http://nhgis.org

  11. N

    Peoria, IL Age Group Population Dataset: A Complete Breakdown of Peoria Age...

    • neilsberg.com
    csv, json
    Updated Feb 22, 2025
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Neilsberg Research (2025). Peoria, IL Age Group Population Dataset: A Complete Breakdown of Peoria Age Demographics from 0 to 85 Years and Over, Distributed Across 18 Age Groups // 2025 Edition [Dataset]. https://www.neilsberg.com/research/datasets/453e6587-f122-11ef-8c1b-3860777c1fe6/
    Explore at:
    csv, jsonAvailable download formats
    Dataset updated
    Feb 22, 2025
    Dataset authored and provided by
    Neilsberg Research
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Area covered
    Peoria, Illinois
    Variables measured
    Population Under 5 Years, Population over 85 years, Population Between 5 and 9 years, Population Between 10 and 14 years, Population Between 15 and 19 years, Population Between 20 and 24 years, Population Between 25 and 29 years, Population Between 30 and 34 years, Population Between 35 and 39 years, Population Between 40 and 44 years, and 9 more
    Measurement technique
    The data presented in this dataset is derived from the latest U.S. Census Bureau American Community Survey (ACS) 2019-2023 5-Year Estimates. To measure the two variables, namely (a) population and (b) population as a percentage of the total population, we initially analyzed and categorized the data for each of the age groups. For age groups we divided it into roughly a 5 year bucket for ages between 0 and 85. For over 85, we aggregated data into a single group for all ages. For further information regarding these estimates, please feel free to reach out to us via email at research@neilsberg.com.
    Dataset funded by
    Neilsberg Research
    Description
    About this dataset

    Context

    The dataset tabulates the Peoria population distribution across 18 age groups. It lists the population in each age group along with the percentage population relative of the total population for Peoria. The dataset can be utilized to understand the population distribution of Peoria by age. For example, using this dataset, we can identify the largest age group in Peoria.

    Key observations

    The largest age group in Peoria, IL was for the group of age 25 to 29 years years with a population of 8,480 (7.56%), according to the ACS 2019-2023 5-Year Estimates. At the same time, the smallest age group in Peoria, IL was the 80 to 84 years years with a population of 1,950 (1.74%). Source: U.S. Census Bureau American Community Survey (ACS) 2019-2023 5-Year Estimates

    Content

    When available, the data consists of estimates from the U.S. Census Bureau American Community Survey (ACS) 2019-2023 5-Year Estimates

    Age groups:

    • Under 5 years
    • 5 to 9 years
    • 10 to 14 years
    • 15 to 19 years
    • 20 to 24 years
    • 25 to 29 years
    • 30 to 34 years
    • 35 to 39 years
    • 40 to 44 years
    • 45 to 49 years
    • 50 to 54 years
    • 55 to 59 years
    • 60 to 64 years
    • 65 to 69 years
    • 70 to 74 years
    • 75 to 79 years
    • 80 to 84 years
    • 85 years and over

    Variables / Data Columns

    • Age Group: This column displays the age group in consideration
    • Population: The population for the specific age group in the Peoria is shown in this column.
    • % of Total Population: This column displays the population of each age group as a proportion of Peoria total population. Please note that the sum of all percentages may not equal one due to rounding of values.

    Good to know

    Margin of Error

    Data in the dataset are based on the estimates and are subject to sampling variability and thus a margin of error. Neilsberg Research recommends using caution when presening these estimates in your research.

    Custom data

    If you do need custom data for any of your research project, report or presentation, you can contact our research staff at research@neilsberg.com for a feasibility of a custom tabulation on a fee-for-service basis.

    Inspiration

    Neilsberg Research Team curates, analyze and publishes demographics and economic data from a variety of public and proprietary sources, each of which often includes multiple surveys and programs. The large majority of Neilsberg Research aggregated datasets and insights is made available for free download at https://www.neilsberg.com/research/.

    Recommended for further research

    This dataset is a part of the main dataset for Peoria Population by Age. You can refer the same here

  12. r

    International Data Base

    • rrid.site
    • scicrunch.org
    • +2more
    Updated May 26, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    (2025). International Data Base [Dataset]. http://identifiers.org/RRID:SCR_013139
    Explore at:
    Dataset updated
    May 26, 2025
    Description

    A computerized data set of demographic, economic and social data for 227 countries of the world. Information presented includes population, health, nutrition, mortality, fertility, family planning and contraceptive use, literacy, housing, and economic activity data. Tabular data are broken down by such variables as age, sex, and urban/rural residence. Data are organized as a series of statistical tables identified by country and table number. Each record consists of the data values associated with a single row of a given table. There are 105 tables with data for 208 countries. The second file is a note file, containing text of notes associated with various tables. These notes provide information such as definitions of categories (i.e. urban/rural) and how various values were calculated. The IDB was created in the U.S. Census Bureau''s International Programs Center (IPC) to help IPC staff meet the needs of organizations that sponsor IPC research. The IDB provides quick access to specialized information, with emphasis on demographic measures, for individual countries or groups of countries. The IDB combines data from country sources (typically censuses and surveys) with IPC estimates and projections to provide information dating back as far as 1950 and as far ahead as 2050. Because the IDB is maintained as a research tool for IPC sponsor requirements, the amount of information available may vary by country. As funding and research activity permit, the IPC updates and expands the data base content. Types of data include: * Population by age and sex * Vital rates, infant mortality, and life tables * Fertility and child survivorship * Migration * Marital status * Family planning Data characteristics: * Temporal: Selected years, 1950present, projected demographic data to 2050. * Spatial: 227 countries and areas. * Resolution: National population, selected data by urban/rural * residence, selected data by age and sex. Sources of data include: * U.S. Census Bureau * International projects (e.g., the Demographic and Health Survey) * United Nations agencies Links: * ICPSR: http://www.icpsr.umich.edu/icpsrweb/ICPSR/studies/08490

  13. c

    United States Census Data, 1900: Public Use Sample

    • archive.ciser.cornell.edu
    • icpsr.umich.edu
    Updated Jan 19, 2020
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Robert Higgs; Samuel Preston (2020). United States Census Data, 1900: Public Use Sample [Dataset]. http://doi.org/10.6077/j5/bkpbxo
    Explore at:
    Dataset updated
    Jan 19, 2020
    Authors
    Robert Higgs; Samuel Preston
    Area covered
    United States
    Variables measured
    Household, Individual
    Description

    This study was conducted under the auspices of the Center for Studies in Demography and Ecology at the University of Washington. It is a nationally representative sample of the population of the United States in 1900, drawn from the manuscript returns of individuals enumerated in the 1900 United States Census. Household variables include region, state and county of household, size of household, and type and ownership of dwelling. Individual variables for each household member include relationship to head of household, race, sex, age, marital status, number of children, and birthplace. Immigration variables include parents' birthplace, year of immigration and number of years in the United States. Occupation variables include occupation, coded by both the 1900 and 1950 systems, and number of months unemployed. Education variables include number of months in school, whether respondents could read or write a language, and whether they spoke English. (Source: downloaded from ICPSR 7/13/10)

    Please Note: This dataset is part of the historical CISER Data Archive Collection and is also available at ICPSR at https://doi.org/10.3886/ICPSR07825.v1. We highly recommend using the ICPSR version as they may make this dataset available in multiple data formats in the future.

  14. N

    Age-wise distribution of Bainbridge Island, WA household incomes:...

    • neilsberg.com
    csv, json
    Updated Jan 9, 2024
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Neilsberg Research (2024). Age-wise distribution of Bainbridge Island, WA household incomes: Comparative analysis across 16 income brackets [Dataset]. https://www.neilsberg.com/research/datasets/85421a54-8dec-11ee-9302-3860777c1fe6/
    Explore at:
    json, csvAvailable download formats
    Dataset updated
    Jan 9, 2024
    Dataset authored and provided by
    Neilsberg Research
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Area covered
    Bainbridge Island, Washington
    Variables measured
    Number of households with income $200,000 or more, Number of households with income less than $10,000, Number of households with income between $15,000 - $19,999, Number of households with income between $20,000 - $24,999, Number of households with income between $25,000 - $29,999, Number of households with income between $30,000 - $34,999, Number of households with income between $35,000 - $39,999, Number of households with income between $40,000 - $44,999, Number of households with income between $45,000 - $49,999, Number of households with income between $50,000 - $59,999, and 6 more
    Measurement technique
    The data presented in this dataset is derived from the U.S. Census Bureau American Community Survey (ACS) 2017-2021 5-Year Estimates. It delineates income distributions across 16 income brackets (mentioned above) following an initial analysis and categorization. Using this dataset, you can find out the total number of households within a specific income bracket along with how many households with that income bracket for each of the 4 age cohorts (Under 25 years, 25-44 years, 45-64 years and 65 years and over). For additional information about these estimations, please contact us via email at research@neilsberg.com
    Dataset funded by
    Neilsberg Research
    Description
    About this dataset

    Context

    The dataset presents the the household distribution across 16 income brackets among four distinct age groups in Bainbridge Island: Under 25 years, 25-44 years, 45-64 years, and over 65 years. The dataset highlights the variation in household income, offering valuable insights into economic trends and disparities within different age categories, aiding in data analysis and decision-making..

    Key observations

    • Upon closer examination of the distribution of households among age brackets, it reveals that there are 75(0.76%) households where the householder is under 25 years old, 1,950(19.85%) households with a householder aged between 25 and 44 years, 4,067(41.40%) households with a householder aged between 45 and 64 years, and 3,732(37.99%) households where the householder is over 65 years old.
    • In Bainbridge Island, the age group of 45 to 64 years stands out with both the highest median income and the maximum share of households. This alignment suggests a financially stable demographic, indicating an established community with stable careers and higher incomes.
    Content

    When available, the data consists of estimates from the U.S. Census Bureau American Community Survey (ACS) 2017-2021 5-Year Estimates.

    Income brackets:

    • Less than $10,000
    • $10,000 to $14,999
    • $15,000 to $19,999
    • $20,000 to $24,999
    • $25,000 to $29,999
    • $30,000 to $34,999
    • $35,000 to $39,999
    • $40,000 to $44,999
    • $45,000 to $49,999
    • $50,000 to $59,999
    • $60,000 to $74,999
    • $75,000 to $99,999
    • $100,000 to $124,999
    • $125,000 to $149,999
    • $150,000 to $199,999
    • $200,000 or more

    Variables / Data Columns

    • Household Income: This column showcases 16 income brackets ranging from Under $10,000 to $200,000+ ( As mentioned above).
    • Under 25 years: The count of households led by a head of household under 25 years old with income within a specified income bracket.
    • 25 to 44 years: The count of households led by a head of household 25 to 44 years old with income within a specified income bracket.
    • 45 to 64 years: The count of households led by a head of household 45 to 64 years old with income within a specified income bracket.
    • 65 years and over: The count of households led by a head of household 65 years and over old with income within a specified income bracket.

    Good to know

    Margin of Error

    Data in the dataset are based on the estimates and are subject to sampling variability and thus a margin of error. Neilsberg Research recommends using caution when presening these estimates in your research.

    Custom data

    If you do need custom data for any of your research project, report or presentation, you can contact our research staff at research@neilsberg.com for a feasibility of a custom tabulation on a fee-for-service basis.

    Inspiration

    Neilsberg Research Team curates, analyze and publishes demographics and economic data from a variety of public and proprietary sources, each of which often includes multiple surveys and programs. The large majority of Neilsberg Research aggregated datasets and insights is made available for free download at https://www.neilsberg.com/research/.

    Recommended for further research

    This dataset is a part of the main dataset for Bainbridge Island median household income by age. You can refer the same here

  15. H

    Spatial and temporal contrasts in the distribution of crops and pastures...

    • dataverse.harvard.edu
    Updated Jan 24, 2024
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Pablo Andres Imbach Bartol; M Manrow; Elizabeth Barona Adarve; Alberto G O P Barretto; Glenn Graham Hyman (2024). Spatial and temporal contrasts in the distribution of crops and pastures across Amazonia: A new agricultural land use data set from census data since 1950: Crops and pastures across Amazonia [Dataset]. http://doi.org/10.7910/DVN/7J9WVY
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Jan 24, 2024
    Dataset provided by
    Harvard Dataverse
    Authors
    Pablo Andres Imbach Bartol; M Manrow; Elizabeth Barona Adarve; Alberto G O P Barretto; Glenn Graham Hyman
    License

    https://dataverse.harvard.edu/api/datasets/:persistentId/versions/2.2/customlicense?persistentId=doi:10.7910/DVN/7J9WVYhttps://dataverse.harvard.edu/api/datasets/:persistentId/versions/2.2/customlicense?persistentId=doi:10.7910/DVN/7J9WVY

    Area covered
    Guyana, Peru, South America, Bolivia, Plurinational State of, Colombia, Bolivarian Republic of, Venezuela, Brazil, Ecuador
    Description

    Amazonia holds the largest continuous area of tropical forests with intense land use change dynamics inducing water, carbon, and energy feedbacks with regional and global impacts. Much of our knowledge of land use change in Amazonia comes from studies of the Brazilian Amazon, which accounts for two thirds of the region. Amazonia outside of Brazil has received less attention because of the difficulty of acquiring consistent data across countries. We present here an agricultural statistics database of the entire Amazonia region, with a harmonized description of crops and pastures in geospatial format, based on administrative boundary data at the municipality level. The spatial coverage includes countries within Amazonia and spans censuses and surveys from 1950 to 2012. Harmonized crop and pasture types are explored by grouping annual and perennial cropping systems, C3 and C4 photosynthetic pathways, planted and natural pastures, and main crops. Our analysis examined the spatial pattern of ratios between classes of the groups and their correlation with the agricultural extent of crops and pastures within administrative units of the Amazon, by country, and census/survey dates. Significant correlations were found between all ratios and the fraction of agricultural lands of each administrative unit, with the exception of planted to natural pastures ratio and pasture lands extent. Brazil and Peru in most cases have significant correlations for all ratios analyzed even for specific census and survey dates. Results suggested improvements, and potential applications of the database for carbon, water, climate, and land use change studies are discussed. The database presented here provides an Amazon-wide improved data set on agricultural dynamics with expanded temporal and spatial coverage

  16. d

    National 1-kilometer rasters of selected Census of Agriculture statistics...

    • catalog.data.gov
    • datasets.ai
    • +2more
    Updated Jul 6, 2024
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    U.S. Geological Survey (2024). National 1-kilometer rasters of selected Census of Agriculture statistics allocated to land use for the time period 1950 to 2012 [Dataset]. https://catalog.data.gov/dataset/national-1-kilometer-rasters-of-selected-census-of-agriculture-statistics-allocated-to-lan
    Explore at:
    Dataset updated
    Jul 6, 2024
    Dataset provided by
    U.S. Geological Survey
    Description

    This dataset consists of a series of rasters covering the conterminous United States. Each raster is a one kilometer (km) grid for 18 selected Census of Agriculture statistics mapped to land use pixels for the time period 1950 to 2012. A supplemental set of 9 statistics mapped at the entire county level are also provided as 1-km rasters. The rasters are posted as ArcGIS grids. The statistics represent values for crops, livestock, irrigation, fertilizer, and manure usage. Most statistics are mapped for all 14 Census of Agriculture reporting years in that time frame: 1950, 1954, 1959, 1964, 1969, 1974, 1978, 1982, 1987, 1992, 1997, 2002, 2007, and 2012.

  17. N

    New York City Population by Borough, 1950 - 2040

    • data.cityofnewyork.us
    • data.ny.gov
    • +3more
    application/rdfxml +5
    Updated Apr 29, 2014
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Department of City Planning (DCP) (2014). New York City Population by Borough, 1950 - 2040 [Dataset]. https://data.cityofnewyork.us/City-Government/New-York-City-Population-by-Borough-1950-2040/xywu-7bv9
    Explore at:
    csv, application/rssxml, xml, json, application/rdfxml, tsvAvailable download formats
    Dataset updated
    Apr 29, 2014
    Dataset authored and provided by
    Department of City Planning (DCP)
    Area covered
    New York
    Description

    Unadjusted decennial census data from 1950-2000 and projected figures from 2010-2040: summary table of New York City population numbers and percentage share by Borough, including school-age (5 to 17), 65 and Over, and total population.

  18. T

    Global population survey data set (1950-2018)

    • data.tpdc.ac.cn
    • tpdc.ac.cn
    zip
    Updated Sep 3, 2020
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Wen DONG (2020). Global population survey data set (1950-2018) [Dataset]. https://data.tpdc.ac.cn/en/data/ece5509f-2a2c-4a11-976e-8d939a419a6c
    Explore at:
    zipAvailable download formats
    Dataset updated
    Sep 3, 2020
    Dataset provided by
    TPDC
    Authors
    Wen DONG
    Area covered
    Description

    "Total population is based on the de facto definition of population, which counts all residents regardless of legal status or citizenship. The values shown are midyear estimates.This dataset includes demographic data of 22 countries from 1960 to 2018, including Sri Lanka, Bangladesh, Pakistan, India, Maldives, etc. Data fields include: country, year, population ratio, male ratio, female ratio, population density (km). Source: ( 1 ) United Nations Population Division. World Population Prospects: 2019 Revision. ( 2 ) Census reports and other statistical publications from national statistical offices, ( 3 ) Eurostat: Demographic Statistics, ( 4 ) United Nations Statistical Division. Population and Vital Statistics Reprot ( various years ), ( 5 ) U.S. Census Bureau: International Database, and ( 6 ) Secretariat of the Pacific Community: Statistics and Demography Programme. Periodicity: Annual Statistical Concept and Methodology: Population estimates are usually based on national population censuses. Estimates for the years before and after the census are interpolations or extrapolations based on demographic models. Errors and undercounting occur even in high-income countries. In developing countries errors may be substantial because of limits in the transport, communications, and other resources required to conduct and analyze a full census. The quality and reliability of official demographic data are also affected by public trust in the government, government commitment to full and accurate enumeration, confidentiality and protection against misuse of census data, and census agencies' independence from political influence. Moreover, comparability of population indicators is limited by differences in the concepts, definitions, collection procedures, and estimation methods used by national statistical agencies and other organizations that collect the data. The currentness of a census and the availability of complementary data from surveys or registration systems are objective ways to judge demographic data quality. Some European countries' registration systems offer complete information on population in the absence of a census. The United Nations Statistics Division monitors the completeness of vital registration systems. Some developing countries have made progress over the last 60 years, but others still have deficiencies in civil registration systems. International migration is the only other factor besides birth and death rates that directly determines a country's population growth. Estimating migration is difficult. At any time many people are located outside their home country as tourists, workers, or refugees or for other reasons. Standards for the duration and purpose of international moves that qualify as migration vary, and estimates require information on flows into and out of countries that is difficult to collect. Population projections, starting from a base year are projected forward using assumptions of mortality, fertility, and migration by age and sex through 2050, based on the UN Population Division's World Population Prospects database medium variant."

  19. c

    Data from: HISCO - OCC1950 CROSSWALK

    • datacatalogue.cessda.eu
    • ssh.datastations.nl
    Updated Mar 21, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    R.J. Mourits (2025). HISCO - OCC1950 CROSSWALK [Dataset]. http://doi.org/10.17026/dans-zap-qxmc
    Explore at:
    Dataset updated
    Mar 21, 2025
    Dataset provided by
    Radboud University
    Authors
    R.J. Mourits
    Description

    The study of social class and corresponding measurement schemes has evolved separately in Europe and the US. On both continents a standardized occupational coding system exists that can be transferred into a wide scala of measures of socioeconomic status. This dataset contains a crosswalk between the two standardized historical occupational coding schemes: HISCO and Occ1950.

    The Historical International Standardized Classification of Occupations (HISCO) is the European standard for occupational coding and can be used to generate social class schemes, such as HISCLASS, SOCPO, and HISCAM. The U.S. Bureau of the Census' 1950 standard (Occ1950) is the U.S. standard for occupational coding and can be used to generate social class schemes, like NPBOSS, OCCSCORE, PRESGL, and SEI. With the crosswalk, HISCO can be converted to the American class coding schemes and Occ1950 into the European class coding schemes.

    Occupational categories were linked between HISCO and Occ1950 on the underlying occupations. Both HISCO and Occ1950 consist of multiple layers of occupational groups. HISCO is divided in 7 major, 76 minor, 296 unit, and 1,675 micro groups, which roughly correspond with: social classes, sectors, occupational groups, and occupational subgroups. Occ1950 on the other hand is divided in 10 social classes and 269 occupational groups. HISCO’s micro groups and Occ1950’s occupational subgroups are based on a well-documented number of occupations, which can easily be compared and matched between both occupational coding schemes.

    In the translation from HISCO to Occ1950 1,675 occupational categories were collapsed into 229 Occ1950 unique occupational groups. Although 40 occupational groups in Occ1950 could not be retrieved from HISCO, all occupations were successfully attributed to the right social class. Vice versa, 269 occupational groups in Occ1950 were recoded into 227 HISCO micro groups. Together these 227 unique codes are well-spread over the different branches of the HISCO tree, as they cover most of the unit groups.

    #Please note that this is not the crosswalk from Occ1950 to the intermediate HISCO used by the NAPP project, also known as OCCHISCO or NAPPHISCO. This crosswalk can be retrieved from: https://github.com/rlzijdeman/o-clack/tree/master/crosswalks/occhisco_to_hisco

    #HISCO is the European standard for occupational coding and can be used to generate HISCLASS, SOCPO and HISCAM classifications. The necessary conversion table has been made available by Mandemakers et al. and is available on: https://socialhistory.org/en/hsn/hsn-standardized-hisco-coded-and-classified-occupational-titles-release-201301?language=en

    #Occ1950 is the US standard for occupational coding. The occupational coding system is based on the US Census of 1950 and can be transferred into OCCSCORE, PRESGL, SEI, and Nam-Powers-Boyd. Crosswalks are available on request: https://usa.ipums.org/usa/vols_4_5_index.shtml

  20. A

    Neighborhood Demographics

    • data.boston.gov
    pdf, xlsx
    Updated Feb 23, 2021
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Boston Planning & Development Agency (2021). Neighborhood Demographics [Dataset]. https://data.boston.gov/dataset/neighborhood-demographics
    Explore at:
    xlsx(15582925), xlsx(156459), xlsx(158232), pdf(508811), pdf(476137)Available download formats
    Dataset updated
    Feb 23, 2021
    Dataset authored and provided by
    Boston Planning & Development Agency
    License

    ODC Public Domain Dedication and Licence (PDDL) v1.0http://www.opendatacommons.org/licenses/pddl/1.0/
    License information was derived automatically

    Description

    Demographic Data for Boston’s Neighborhoods, 1950-2019

    Boston is a city defined by the unique character of its many neighborhoods. The historical tables created by the BPDA Research Division from U.S. Census Decennial data describe demographic changes in Boston’s neighborhoods from 1950 through 2010 using consistent tract-based geographies. For more analysis of these data, please see Historical Trends in Boston's Neighborhoods. The most recent available neighborhood demographic data come from the 5-year American Community Survey (ACS). The ACS tables also present demographic data for Census-tract approximations of Boston’s neighborhoods. For pdf versions of the data presented here plus earlier versions of the analysis, please see Boston in Context.

Share
FacebookFacebook
TwitterTwitter
Email
Click to copy link
Link copied
Close
Cite
Google BigQuery (2020). census-bureau-international [Dataset]. https://www.kaggle.com/bigquery/census-bureau-international
Organization logo

census-bureau-international

World population estimates 1950 through 2050

Explore at:
zip(0 bytes)Available download formats
Dataset updated
May 6, 2020
Dataset provided by
BigQueryhttps://cloud.google.com/bigquery
Authors
Google BigQuery
Description

Context

The United States Census Bureau’s international dataset provides estimates of country populations since 1950 and projections through 2050. Specifically, the dataset includes midyear population figures broken down by age and gender assignment at birth. Additionally, time-series data is provided for attributes including fertility rates, birth rates, death rates, and migration rates.

Querying BigQuery tables

You can use the BigQuery Python client library to query tables in this dataset in Kernels. Note that methods available in Kernels are limited to querying data. Tables are at bigquery-public-data.census_bureau_international.

Sample Query 1

What countries have the longest life expectancy? In this query, 2016 census information is retrieved by joining the mortality_life_expectancy and country_names_area tables for countries larger than 25,000 km2. Without the size constraint, Monaco is the top result with an average life expectancy of over 89 years!

standardSQL

SELECT age.country_name, age.life_expectancy, size.country_area FROM ( SELECT country_name, life_expectancy FROM bigquery-public-data.census_bureau_international.mortality_life_expectancy WHERE year = 2016) age INNER JOIN ( SELECT country_name, country_area FROM bigquery-public-data.census_bureau_international.country_names_area where country_area > 25000) size ON age.country_name = size.country_name ORDER BY 2 DESC /* Limit removed for Data Studio Visualization */ LIMIT 10

Sample Query 2

Which countries have the largest proportion of their population under 25? Over 40% of the world’s population is under 25 and greater than 50% of the world’s population is under 30! This query retrieves the countries with the largest proportion of young people by joining the age-specific population table with the midyear (total) population table.

standardSQL

SELECT age.country_name, SUM(age.population) AS under_25, pop.midyear_population AS total, ROUND((SUM(age.population) / pop.midyear_population) * 100,2) AS pct_under_25 FROM ( SELECT country_name, population, country_code FROM bigquery-public-data.census_bureau_international.midyear_population_agespecific WHERE year =2017 AND age < 25) age INNER JOIN ( SELECT midyear_population, country_code FROM bigquery-public-data.census_bureau_international.midyear_population WHERE year = 2017) pop ON age.country_code = pop.country_code GROUP BY 1, 3 ORDER BY 4 DESC /* Remove limit for visualization*/ LIMIT 10

Sample Query 3

The International Census dataset contains growth information in the form of birth rates, death rates, and migration rates. Net migration is the net number of migrants per 1,000 population, an important component of total population and one that often drives the work of the United Nations Refugee Agency. This query joins the growth rate table with the area table to retrieve 2017 data for countries greater than 500 km2.

SELECT growth.country_name, growth.net_migration, CAST(area.country_area AS INT64) AS country_area FROM ( SELECT country_name, net_migration, country_code FROM bigquery-public-data.census_bureau_international.birth_death_growth_rates WHERE year = 2017) growth INNER JOIN ( SELECT country_area, country_code FROM bigquery-public-data.census_bureau_international.country_names_area

Update frequency

Historic (none)

Dataset source

United States Census Bureau

Terms of use: This dataset is publicly available for anyone to use under the following terms provided by the Dataset Source - http://www.data.gov/privacy-policy#data_policy - and is provided "AS IS" without any warranty, express or implied, from Google. Google disclaims all liability for any damages, direct or indirect, resulting from the use of the dataset.

See the GCP Marketplace listing for more details and sample queries: https://console.cloud.google.com/marketplace/details/united-states-census-bureau/international-census-data

Search
Clear search
Close search
Google apps
Main menu