19 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. N

    Ball Bluff Township, Minnesota Population Pyramid Dataset: Age Groups, Male...

    • 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). Ball Bluff Township, Minnesota Population Pyramid Dataset: Age Groups, Male and Female Population, and Total Population for Demographics Analysis // 2025 Edition [Dataset]. https://www.neilsberg.com/research/datasets/52398c54-f122-11ef-8c1b-3860777c1fe6/
    Explore at:
    json, csvAvailable 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
    Minnesota, Ball Bluff Township
    Variables measured
    Male and Female Population Under 5 Years, Male and Female Population over 85 years, Male and Female Total Population for Age Groups, Male and Female Population Between 5 and 9 years, Male and Female Population Between 10 and 14 years, Male and Female Population Between 15 and 19 years, Male and Female Population Between 20 and 24 years, Male and Female Population Between 25 and 29 years, Male and Female Population Between 30 and 34 years, Male and Female Population Between 35 and 39 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 three variables, namely (a) male population, (b) female population and (b) 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 data for the Ball Bluff Township, Minnesota population pyramid, which represents the Ball Bluff township population distribution across age and gender, using estimates from the U.S. Census Bureau American Community Survey (ACS) 2019-2023 5-Year Estimates. It lists the male and female population for each age group, along with the total population for those age groups. Higher numbers at the bottom of the table suggest population growth, whereas higher numbers at the top indicate declining birth rates. Furthermore, the dataset can be utilized to understand the youth dependency ratio, old-age dependency ratio, total dependency ratio, and potential support ratio.

    Key observations

    • Youth dependency ratio, which is the number of children aged 0-14 per 100 persons aged 15-64, for Ball Bluff Township, Minnesota, is 10.9.
    • Old-age dependency ratio, which is the number of persons aged 65 or over per 100 persons aged 15-64, for Ball Bluff Township, Minnesota, is 35.6.
    • Total dependency ratio for Ball Bluff Township, Minnesota is 46.4.
    • Potential support ratio, which is the number of youth (working age population) per elderly, for Ball Bluff Township, Minnesota is 2.8.
    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 for the Ball Bluff township population analysis. Total expected values are 18 and are define above in the age groups section.
    • Population (Male): The male population in the Ball Bluff township for the selected age group is shown in the following column.
    • Population (Female): The female population in the Ball Bluff township for the selected age group is shown in the following column.
    • Total Population: The total population of the Ball Bluff township for the selected age group is shown in the following column.

    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 Ball Bluff township Population by Age. You can refer the same here

  3. Average Daily Screen Time for Children

    • kaggle.com
    Updated Mar 24, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    AKshay (2025). Average Daily Screen Time for Children [Dataset]. https://www.kaggle.com/datasets/ak0212/average-daily-screen-time-for-children/versions/1
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Mar 24, 2025
    Dataset provided by
    Kaggle
    Authors
    AKshay
    License

    MIT Licensehttps://opensource.org/licenses/MIT
    License information was derived automatically

    Description

    This datas real-world trends in children's screen time usage. It includes data on educational, recreational, and total screen time for children aged 5 to 15 years, with breakdowns by gender (Male, Female, Other/Prefer not to say) and day type (Weekday, Weekend). The dataset follows expected behavioral patterns:

    Screen time increases with age (~1.5 hours/day at age 5 to 6+ hours/day at age 15).

    Recreational screen time dominates, making up 65–80% of total screen time.

    Weekend screen time is 20–30% higher than weekdays, with a larger increase for teenagers.

    Slight gender-based variations in recreational screen time.

    The dataset contains natural variability, ensuring realism, and the sample size decreases slightly with age (e.g., 500 respondents at age 5, 300 at age 15).

    This dataset is ideal for data analysis, visualization, and machine learning experiments related to children's digital habits. 🚀

  4. Infant deaths and mortality rates, by age group

    • www150.statcan.gc.ca
    • open.canada.ca
    • +1more
    Updated Feb 19, 2025
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Government of Canada, Statistics Canada (2025). Infant deaths and mortality rates, by age group [Dataset]. http://doi.org/10.25318/1310071301-eng
    Explore at:
    Dataset updated
    Feb 19, 2025
    Dataset provided by
    Statistics Canadahttps://statcan.gc.ca/en
    Area covered
    Canada
    Description

    Number of infant deaths and infant mortality rates, by age group (neonatal and post-neonatal), 1991 to most recent year.

  5. e

    Age model of sediment core MSM45/19_2 - Dataset - B2FIND

    • b2find.eudat.eu
    Updated May 1, 2023
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    (2023). Age model of sediment core MSM45/19_2 - Dataset - B2FIND [Dataset]. https://b2find.eudat.eu/dataset/25249380-4bed-50e7-8392-41fab679a505
    Explore at:
    Dataset updated
    May 1, 2023
    Description

    The presented data originates from the 1306cm long gravity core MSM45-19-2 (58°45.68 N, 61°56.25 W, 202m water depth) taken during R/V Maria S. Merian cruise MSM45 in August 2015 at 202 m water depth on the northern Labrador Shelf, northeast Canada, northwest Atlantic.Radiocarbon dating was done to secure the chorology of core MSM45-19-2 for further palaeoceanographic interpretations. The chronology of core MSM45-19-2 is based on linear interpolation of the calibrated (median probability)14C AMS ages. The sedimentation rate varies between 0.037 and 1.22 cm per year and decreases toward the top of the core, which may be related to stronger current activity during the late Holocene leading to winnowing of fine particles (e.g. Rashid et al., 2017) or a shift of the sediment deposition center toward the outer shelf after sea-level high stand was reached. In addition, decreased glacial meltwater runoff after 7 ka BP corresponding to the end of significant Laurentide Ice Sheet melting (Carlson et al., 2008) would have led to a diminished terrestrial sediment influx. The upper 500 cm of the core provide an average chronological resolution of ca. 70 yrs per sample, while the lower part of the core from 500 to 1300 cm provides an average chronological resolution of ca. 10 years per sample.21 AMS 14C measurements which were carried out on mixed calcareous benthic foraminifera at the Leibniz Laboratory of Kiel University (CAU), Germany between 2016 and 2017. Each sample contained over 1000 specimens (about 5mg). The 14C dates were calibrated using Calib 7.1 (Stuiver et al.,2017; Stuiver and Reimer, 1993) and the Marine13 data set (Reimer et al., 2013) applying variable reservoir corrections (ΔR) of 144, 344, and 644 ± 38 years. Based on the modern Labrador Shelf marine radiocarbon correction (McNeely et al., 2006), we applied a ΔR of 144 ± 38 years to the radiocarbon dates between3 and 603 cm depth. An additional early Holocene sea-ice correction of 200 years (Bard et al., 1994; Lewis et al., 2012) led to the ΔR of 344 ± 38 years between 703 and 1033 cm depth. The larger component of Baffin Bay sourced Arctic waters contributing to the LC must have resulted in an even higher reservoir effect, because of the poor ventilation of polar waters with a perennial sea-ice cover (Austin et al., 1995). In order to maintain nearly continuous sedimentation rates, we applied a ΔR of 644 ± 38 years to the radiocarbon dates between 1043 and 1303 cm depth. An early Holocene reservoir correction of this order is further corroborated by the independent estimate of R = 880–1000 years (ΔR = 480–600 years) using the 14C-Plateau dating method for Arctic waters from the Barent Shelf south of Svalbard (Sarnthein and Werner, 2017). Dates are reported in calibrated years BP (before present).

  6. Z

    Multicenter dataset of simulated neuroimaging features

    • data.niaid.nih.gov
    Updated Jul 7, 2023
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Marzi, Chiara (2023). Multicenter dataset of simulated neuroimaging features [Dataset]. https://data.niaid.nih.gov/resources?id=zenodo_7848839
    Explore at:
    Dataset updated
    Jul 7, 2023
    Dataset provided by
    Diciotti, Stefano
    Marzi, Chiara
    License

    Attribution-NonCommercial-ShareAlike 3.0 (CC BY-NC-SA 3.0)https://creativecommons.org/licenses/by-nc-sa/3.0/
    License information was derived automatically

    Description

    Let (y_{ijf}) be the one-dimensional array of the simulated feature (f), for the single-center (i), and participant (j), for a total of (k) single-center datasets,(n_i) participants for each center, and (V) features. We simulated MRI-derived cortical thickness (CT) and fractal dimension (FD) data for (k = 3, 10, 36) single-centers. Each single-center dataset provided the same number of participants (i.e., (n_i = n)), with (n) assuming the values (25, 50, 100, 250). Additionally, for (k = 3), we simulated CT and FD data with (n = 500, 100, 5000, 10000). Totally, we did 32 experiments, i.e., we simulated 32 different multicenter datasets (16 for the CT features and 16 for the FD measures).

    Each (y_{ijf}) was generated using the model proposed by Johnson and colleagues [1] and recently used for neuroimaging features’ simulation by Chen and collaborators [2]:

    (y_{ijf} = \alpha_f + \beta_fx_{ij} + \gamma_{if} + \delta_{if}\epsilon_{ijf})

    where (\alpha_f) is the average value of the feature (f) in the single-center ICBM dataset [3], (\beta_f) is the effect of the age on the feature (f)estimated through a linear regression between actual age and feature (f) in the single-center ICBM dataset, (x_{ij}) is a simulated age variable drawn from a uniform distribution (X \sim uniform([20, 90])). The mean site effect (\gamma_{if}) was drawn from a normal distribution with zero mean and standard deviation equal to 0.1, while the variance site effect (\delta_{if}) was drawn from a center-specific inverse gamma distribution with chosen parameters. For our simulations, we chose to distinguish the site-specific location factors by assuming independent and identically distributed (i.i.d.) normal distributions and scaling factors using the parameters described as follows. We set the value of the inverse gamma shape, for each center, as {46, 51, 56}, respectively, when k = 3, as {40, 42, .., 58} when k = 10, and as {10, 12, .., 70} when k = 36. In all cases, the inverse gamma scale was set to 50.

    Each CSV file contains the following columns:

    SITE: simulated imaging site label (i.e., a, b, c, ..., j)

    age: each subject's simulated age, expressed in years

    cortex_CT (FD): CT (or FD) of the cerebral cortical gray matter (GM).

    lh_cortex_CT (FD), rh_cortex_CT (FD): CT (or FD) of the left (lh) and right (rh) cerebral cortical GM.

    lh_frontal_cortex_CT (FD), rh_frontal_cortex_CT (FD): CT (or FD) of the left (lh) and right (rh) cerebral cortical GM of the frontal lobe.

    lh_temporal_cortex_CT (FD), rh_temporal_cortex_CT (FD): CT (or FD) of the left (lh) and right (rh) cerebral cortical GM of the temporal lobe.

    lh_parietal_cortex_CT (FD), rh_parietal_cortex_CT (FD): CT (or FD) of the left (lh) and right (rh) cerebral cortical GM of the parietal lobe.

    lh_occipital_cortex_CT (FD), rh_occipital_cortex_CT (FD): CT (or FD) of the left (lh) and right (rh) cerebral cortical GM of the occipital lobe.

    References

    [1] Johnson, W. E., Li, C. & Rabinovic, A. Adjusting batch effects in microarray expression data using empirical Bayes methods. Biostat. Oxf. Engl. 8, 118–127 (2007).

    [2] Chen, A. A. et al. Mitigating site effects in covariance for machine learning in neuroimaging data. Hum. Brain Mapp. 43, 1179–1195 (2022).

    [3] 1000 Functional Connectomes Project (FCP) – ICBM dataset.

  7. a

    Demographic and Health Survey 2000 - Armenia

    • microdata.armstat.am
    • catalog.ihsn.org
    • +2more
    Updated Oct 10, 2019
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Ministry of Health (2019). Demographic and Health Survey 2000 - Armenia [Dataset]. https://microdata.armstat.am/index.php/catalog/1
    Explore at:
    Dataset updated
    Oct 10, 2019
    Dataset provided by
    Ministry of Health
    National Statistical Service
    Time period covered
    2000
    Area covered
    Armenia
    Description

    Abstract

    The Armenia Demographic and Health Survey (ADHS) was a nationally representative sample survey designed to provide information on population and health issues in Armenia. The primary goal of the survey was to develop a single integrated set of demographic and health data, the first such data set pertaining to the population of the Republic of Armenia. In addition to integrating measures of reproductive, child, and adult health, another feature of the DHS survey is that the majority of data are presented at the marz level.

    The ADHS was conducted by the National Statistical Service and the Ministry of Health of the Republic of Armenia during October through December 2000. ORC Macro provided technical support for the survey through the MEASURE DHS+ project. MEASURE DHS+ is a worldwide project, sponsored by the USAID, with a mandate to assist countries in obtaining information on key population and health indicators. USAID/Armenia provided funding for the survey. The United Nations Children’s Fund (UNICEF)/Armenia provided support through the donation of equipment.

    The ADHS collected national- and regional-level data on fertility and contraceptive use, maternal and child health, adult health, and AIDS and other sexually transmitted diseases. The survey obtained detailed information on these issues from women of reproductive age and, on certain topics, from men as well. Data are presented by marz wherever sample size permits.

    The ADHS results are intended to provide the information needed to evaluate existing social programs and to design new strategies for improving the health of and health services for the people of Armenia. The ADHS also contributes to the growing international database on demographic and health-related variables.

    Geographic coverage

    National

    Analysis unit

    • Household
    • Children under five years
    • Women age 15-49
    • Men age 15-54

    Kind of data

    Sample survey data

    Sampling procedure

    The sample was designed to provide estimates of most survey indicators (including fertility, abortion, and contraceptive prevalence) for Yerevan and each of the other ten administrative regions (marzes). The design also called for estimates of infant and child mortality at the national level for Yerevan and other urban areas and rural areas.

    The target sample size of 6,500 completed interviews with women age 15-49 was allocated as follows: 1,500 to Yerevan and 500 to each of the ten marzes. Within each marz, the sample was allocated between urban and rural areas in proportion to the population size. This gave a target sample of approximately 2,300 completed interviews for urban areas exclusive of Yerevan and 2,700 completed interviews for the rural sector. Interviews were completed with 6,430 women. Men age 15-54 were interviewed in every third household; this yielded 1,719 completed interviews.

    A two-stage sample was used. In the first stage, 260 areas or primary sampling units (PSUs) were selected with probability proportional to population size (PPS) by systematic selection from a list of areas. The list of areas was the 1996 Data Base of Addresses and Households constructed by the National Statistical Service. Because most selected areas were too large to be directly listed, a separate segmentation operation was conducted prior to household listing. Large selected areas were divided into segments of which two segments were included in the sample. A complete listing of households was then carried out in selected segments as well as selected areas that were not segmented.

    The listing of households served as the sampling frame for the selection of households in the second stage of sampling. Within each area, households were selected systematically so as to yield an average of 25 completed interviews with eligible women per area. All women 15-49 who stayed in the sampled households on the night before the interview were eligible for the survey. In each segment, a subsample of one-third of all households was selected for the men's component of the survey. In these households, all men 15-54 who stayed in the household on the previous night were eligible for the survey.

    Note: See detailed description of sample design in APPENDIX A of the survey report.

    Mode of data collection

    Face-to-face [f2f]

    Research instrument

    Three questionnaires were used in the ADHS: a Household Questionnaire, a Women’s Questionnaire, and a Men’s Questionnaire. The questionnaires were based on the model survey instruments developed for the MEASURE DHS+ program. The model questionnaires were adapted for use during a series of expert meetings hosted by the Center of Perinatology, Obstetrics, and Gynecology. The questionnaires were developed in English and translated into Armenian and Russian. The questionnaires were pretested in July 2000.

    The Household Questionnaire was used to list all usual members of and visitors to a household and to collect information on the physical characteristics of the dwelling unit. The first part of the household questionnaire collected information on the age, sex, residence, educational attainment, and relationship to the household head of each household member or visitor. This information provided basic demographic data for Armenian households. It also was used to identify the women and men who were eligible for the individual interview (i.e., women 15-49 and men 15-54). The second part of the Household Questionnaire consisted of questions on housing characteristics (e.g., the flooring material, the source of water, and the type of toilet facilities) and on ownership of a variety of consumer goods.

    The Women’s Questionnaire obtained information on the following topics: - Background characteristics - Pregnancy history - Antenatal, delivery, and postnatal care - Knowledge and use of contraception - Attitudes toward contraception and abortion - Reproductive and adult health - Vaccinations, birth registration, and health of children under age five - Episodes of diarrhea and respiratory illness of children under age five - Breastfeeding and weaning practices - Height and weight of women and children under age five - Hemoglobin measurement of women and children under age five - Marriage and recent sexual activity - Fertility preferences - Knowledge of and attitude toward AIDS and other sexually transmitted infections.

    The Men’s Questionnaire focused on the following topics: - Background characteristics - Health - Marriage and recent sexual activity - Attitudes toward and use of condoms - Knowledge of and attitude toward AIDS and other sexually transmitted infections.

    Cleaning operations

    After a team had completed interviewing in a cluster, questionnaires were returned promptly to the National Statistical Service in Yerevan for data processing. The office editing staff first checked that questionnaires for all selected households and eligible respondents had been received from the field staff. In addition, a few questions that had not been precoded (e.g., occupation) were coded at this time. Using the ISSA (Integrated System for Survey Analysis) software, a specially trained team of data processing staff entered the questionnaires and edited the resulting data set on microcomputers. The process of office editing and data processing was initiated soon after the beginning of fieldwork and was completed by the end of January 2001.

    Response rate

    A total of 6,524 households were selected for the sample, of which 6,150 were occupied at the time of fieldwork. The main reason for the difference is that some of the dwelling units that were occupied during the household listing operation were either vacant or the household was away for an extended period at the time of interviewing. Of the occupied households, 97 percent were successfully interviewed.

    In these households, 6,685 women were identified as eligible for the individual interview (i.e., age 15-49). Interviews were completed with 96 percent of them. Of the 1,913 eligible men identified, 90 percent were successfully interviewed. The principal reason for non-response among eligible women and men was the failure to find them at home despite repeated visits to the household. The refusal rate was low.

    The overall response rates, the product of the household and the individual response rates, were 94 percent for women and 87 percent for men.

    Note: See summarized response rates by residence (urban/rural) in Table 1.1 of the survey report.

    Sampling error estimates

    The estimates from a sample survey are affected by two types of errors: (1) nonsampling errors, and (2) sampling errors. Nonsampling errors are the results of mistakes made in implementing data collection and data processing, such as failure to locate and interview the correct household, misunderstanding of the questions on the part of either the interviewer or the respondent, and data entry errors. Although numerous efforts were made during the implementation of the 2000 Armenia Demographic and Health Survey (ADHS) to minimize this type of error, nonsampling errors are impossible to avoid and difficult to evaluate statistically.

    Sampling errors, on the other hand, can be evaluated statistically. The sample of respondents selected in the ADHS is only one of many samples that could have been selected from the same population, using the same design and expected size. Each of these samples would yield results that differ somewhat from the results of the actual sample selected. Sampling errors are a measure of the variability between all possible samples. Although the degree of variability is not known exactly, it can be estimated from the survey

  8. Deaths registered weekly in England and Wales, provisional

    • ons.gov.uk
    • cy.ons.gov.uk
    xlsx
    Updated Sep 3, 2025
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Office for National Statistics (2025). Deaths registered weekly in England and Wales, provisional [Dataset]. https://www.ons.gov.uk/peoplepopulationandcommunity/birthsdeathsandmarriages/deaths/datasets/weeklyprovisionalfiguresondeathsregisteredinenglandandwales
    Explore at:
    xlsxAvailable download formats
    Dataset updated
    Sep 3, 2025
    Dataset provided by
    Office for National Statisticshttp://www.ons.gov.uk/
    License

    Open Government Licence 3.0http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/
    License information was derived automatically

    Area covered
    England
    Description

    Provisional counts of the number of deaths registered in England and Wales, by age, sex, region and Index of Multiple Deprivation (IMD), in the latest weeks for which data are available.

  9. a

    Income Deprivation Affecting Olden People - Hexgrid MSOA Model Output

    • data-insight-tfwm.hub.arcgis.com
    Updated Sep 15, 2021
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Transport for West Midlands (2021). Income Deprivation Affecting Olden People - Hexgrid MSOA Model Output [Dataset]. https://data-insight-tfwm.hub.arcgis.com/datasets/income-deprivation-affecting-olden-people-hexgrid-msoa-model-output
    Explore at:
    Dataset updated
    Sep 15, 2021
    Dataset authored and provided by
    Transport for West Midlands
    Description

    Created with a 500 meter side hexagon grid, we undertook a regression analysis creating a correlation matrix utilising a number of demographic indicators from the Local Insight OCSI platform. This dataset is showing the distribution of the metrics that were found to have the strongest relationships, with the base comparison metric of Indices of Deprivation 2019 income deprivation affecting older people. This dataset contains the following metrics: IoD 2019 Income Deprivation Affecting Older People (IDAOPI) Score (rate) - The Indices of Deprivation (IoD) 2019 Income Deprivation Affecting Older People Index captures deprivation affecting older people defined as those adults aged 60 or over receiving Income Support or income-based Jobseekers Allowance or income-based Employment and Support Allowance or Pension Credit (Guarantee) or Universal Credit (in the 'Searching for work', 'No work requirements', 'Planning for work', 'Working with requirements' and 'Preparing for work' conditionality groups) or families not in receipt of these benefits but in receipt of Working Tax Credit or Child Tax Credit with an equivalised income (excluding housing benefit) below 60 per cent of the national median before housing costs. Asylum seekers aged 60 and over are not included in the Income Deprivation Affecting Older People Index. Rate calculated as = (ID 2019 Income Deprivation Affecting Older People Index (IDAOPI) numerator)/(ID 2019 Older population aged 60 and over: mid 2015 (excluding prisoners))*100.Pension Credit claimants who are single - Shows the proportion of people receiving Pension Credit who are single (as a % of all of pensionable age). Pension Credit provides financial help for people aged 60 or over whose income is below a certain level set by the law. Rate calculated as = (Pension Credit claimants, single)/(Population aged 65+)*100.Pension Credit claimants, Guarantee Element - Shows the proportion of people of retirement age receiving Pension Credit Guarantee Element. Pension Credit provides financial help for people aged 60 or over whose income is below a certain level set by the law. The Guarantee Element is payable to tops up incomes that are below a minimum threshold. Rate calculated as = (Pension Credit claimants, Guarantee Element)/(Population aged 65+)*100.Working-age DWP benefit claimants aged 50 and over - Shows the proportion of people aged 50-64 receiving DWP benefits. DWP Benefits are benefits payable to all people who need additional financial support due to low income, worklessness, poor health, caring responsibilities, bereavement or disability. The following benefits are included: Bereavement Benefit, Carers Allowance, Disability Living Allowance, Incapacity Benefit/Severe Disablement Allowance, Income Support, Jobseekers Allowance, Pension Credit and Widows Benefit. Figure are derived from 100% sample of administrative records from the Work and Pensions Longitudinal Study (WPLS), with all clients receiving more than one benefit counted only by their primary reason for interacting with the benefits system (to avoid double counting). Universal Credit (UC) and Personal Independence Payment (PIP) started to replace the benefits included in this measure from April 2013 when new Jobseeker's Allowance and Disability Living Allowance claimants started to move onto the new benefits in selected geographical areas. This rollout intensified from March 2016 onwards to capture all of the other Working age DWP Benefits. As UC and PIP are not included in this measure it no longer represent a complete count of working age people receiving DWP Benefits. As a result the measure was discontinued in November 2016. Rate calculated as = (Working-age DWP benefit claimants aged 50 and over) /(Population aged 50+)*100.People with numeracy skills at entry level 1 or below (2011) (%) - Shows the proportion of people with numeracy skills at entry level 1 or below. The Skills for Life Survey 2011 was commissioned by the Department for Business Innovation and Skills. The survey aimed to produce a national profile of adult literacy, numeracy and Information and Communication Technology (ICT) skills, and to assess the impact different skills had on people's lives. Each figure is a mean estimate of the number of adults with each skill level (or who do / do not speak English as a first language). The survey was conducted at regional level as a part interview part questionnaire. The interview comprised a background questionnaire followed by a pre-assigned random combination of two of the three skills assessments: literacy, numeracy and ICT. The background questionnaire was designed to collect a broad set of relevant demographic and behavioural data. This demographic data was used to model the information down to neighbourhood level using the neighbourhood characteristics of each MSOA to create a likely average skill level of the population within each MSOA. survey. Respondents who completed the questions allocated to the literacy and numeracy assessments were assigned to one of the five lowest levels of the National Qualifications Framework: Entry Level 1 or below; Entry Level 2; Entry Level 3; Level 1; or Level 2 or above. Each figure is a mean estimate of the number of adults with each skill level (or who do / do not speak English as a first language).IoD 2015 Housing affordability indicator -Social Grade (N-SEC): 8. Never worked and long-term unemployed - Shows the proportion of people in employment (aged 16-74) in the Approximated Social grade (N-SEC) category: 8. Never worked and long-term unemployed. An individual's approximated social grade is determined by their response to the occupation questions in the 2011 Census. Rate calculated as = (Never worked and long-term unemployed (census KS611))/(All usual residents aged 16 to 74 (census KS611))*100.Female healthy life expectancy at birth - Female healthy life expectancy at birth. Healthy life expectancy (HLE) is the average number of years that an individual might expect to live in "good" health in their lifetime. The 'good' health state used for estimation of HLE was based on self-reports of general health at the 2011 Census; specifically those reporting their general health as 'very good' or 'good' were defined as in 'Good' health in this context. The HLE estimates are a snapshot of the health status of the population, based on self-reported health status and mortality rates for each area in that period. They are not a guide to how long someone will actually expect to live in "good" health, both because mortality rates and levels of health status are likely to change in the future, and because many of those born in an area will live elsewhere for at least part of their lives.Sport England Market Segmentation: Pub League Team Mates - Shows the proportion of people living in the area that are classified as Pub League Team Mates in the Sports Market Segmentation tool developed by Sport England. The Pub League Team Mates classification group are predominantly aged 36-45 are a mix of married/single child and childless and likely to be engaged in a vocational job. For more details about the characteristics of this group see http://segments.sportengland.org/pdf/penPortrait-9.pdf. Sports Market Segmentation is a web-based tool developed by Sport England to help all those delivering sport to better understand their local markets and target them more effectively.IoD 2010 Income Domain, score - The Indices of Deprivation (IoD) 2010 Income Deprivation Domain measures the proportion of the population in an area experiencing deprivation relating to low income. The definition of low income used includes both those people that are out-of-work, and those that are in work but who have low earnings (and who satisfy the respective means tests). The domain forms part of the overall Index of Multiple Deprivation (IMD) 2010. The IMD 2010 is the most comprehensive measure of multiple deprivation available. Drawn primarily from 2008 data and presented at small area level, the IMD 2010 is a unique and invaluable tool for measuring deprivation nationally and across local areas. The concept of multiple deprivation upon which the IMD 2010 is based is that separate types of deprivation exist, which are separately recognised and measurable.People over the age of 65 with bad or very bad health - Shows the proportion of people over the age of 65 that reported to have bad or very bad health. Figures are self-reported and taken from the 2011 Census. Rate calculated as = (Bad or very bad health (census LC3206)/(Population aged 65+)*100

  10. N

    Homer Township, Pennsylvania Population Pyramid Dataset: Age Groups, Male...

    • 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). Homer Township, Pennsylvania Population Pyramid Dataset: Age Groups, Male and Female Population, and Total Population for Demographics Analysis // 2025 Edition [Dataset]. https://www.neilsberg.com/research/datasets/5253ef1b-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
    Homer Township, Pennsylvania
    Variables measured
    Male and Female Population Under 5 Years, Male and Female Population over 85 years, Male and Female Total Population for Age Groups, Male and Female Population Between 5 and 9 years, Male and Female Population Between 10 and 14 years, Male and Female Population Between 15 and 19 years, Male and Female Population Between 20 and 24 years, Male and Female Population Between 25 and 29 years, Male and Female Population Between 30 and 34 years, Male and Female Population Between 35 and 39 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 three variables, namely (a) male population, (b) female population and (b) 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 data for the Homer Township, Pennsylvania population pyramid, which represents the Homer township population distribution across age and gender, using estimates from the U.S. Census Bureau American Community Survey (ACS) 2019-2023 5-Year Estimates. It lists the male and female population for each age group, along with the total population for those age groups. Higher numbers at the bottom of the table suggest population growth, whereas higher numbers at the top indicate declining birth rates. Furthermore, the dataset can be utilized to understand the youth dependency ratio, old-age dependency ratio, total dependency ratio, and potential support ratio.

    Key observations

    • Youth dependency ratio, which is the number of children aged 0-14 per 100 persons aged 15-64, for Homer Township, Pennsylvania, is 37.7.
    • Old-age dependency ratio, which is the number of persons aged 65 or over per 100 persons aged 15-64, for Homer Township, Pennsylvania, is 24.9.
    • Total dependency ratio for Homer Township, Pennsylvania is 62.6.
    • Potential support ratio, which is the number of youth (working age population) per elderly, for Homer Township, Pennsylvania is 4.0.
    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 for the Homer township population analysis. Total expected values are 18 and are define above in the age groups section.
    • Population (Male): The male population in the Homer township for the selected age group is shown in the following column.
    • Population (Female): The female population in the Homer township for the selected age group is shown in the following column.
    • Total Population: The total population of the Homer township for the selected age group is shown in the following column.

    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 Homer township Population by Age. You can refer the same here

  11. N

    Arcadia, New York Population Pyramid Dataset: Age Groups, Male and Female...

    • neilsberg.com
    csv, json
    Updated Sep 16, 2023
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Neilsberg Research (2023). Arcadia, New York Population Pyramid Dataset: Age Groups, Male and Female Population, and Total Population for Demographics Analysis [Dataset]. https://www.neilsberg.com/research/datasets/61e500f6-3d85-11ee-9abe-0aa64bf2eeb2/
    Explore at:
    json, csvAvailable download formats
    Dataset updated
    Sep 16, 2023
    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
    New York, Arcadia
    Variables measured
    Male and Female Population Under 5 Years, Male and Female Population over 85 years, Male and Female Total Population for Age Groups, Male and Female Population Between 5 and 9 years, Male and Female Population Between 10 and 14 years, Male and Female Population Between 15 and 19 years, Male and Female Population Between 20 and 24 years, Male and Female Population Between 25 and 29 years, Male and Female Population Between 30 and 34 years, Male and Female Population Between 35 and 39 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) 2017-2021 5-Year Estimates. To measure the three variables, namely (a) male population, (b) female population and (b) 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 data for the Arcadia, New York population pyramid, which represents the Arcadia town population distribution across age and gender, using estimates from the U.S. Census Bureau American Community Survey 5-Year estimates. It lists the male and female population for each age group, along with the total population for those age groups. Higher numbers at the bottom of the table suggest population growth, whereas higher numbers at the top indicate declining birth rates. Furthermore, the dataset can be utilized to understand the youth dependency ratio, old-age dependency ratio, total dependency ratio, and potential support ratio.

    Key observations

    • Youth dependency ratio, which is the number of children aged 0-14 per 100 persons aged 15-64, for Arcadia, New York, is 28.0.
    • Old-age dependency ratio, which is the number of persons aged 65 or over per 100 persons aged 15-64, for Arcadia, New York, is 32.2.
    • Total dependency ratio for Arcadia, New York is 60.2.
    • Potential support ratio, which is the number of youth (working age population) per elderly, for Arcadia, New York is 3.1.
    Content

    When available, the data consists of estimates from the U.S. Census Bureau American Community Survey (ACS) 2017-2021 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 for the Arcadia town population analysis. Total expected values are 18 and are define above in the age groups section.
    • Population (Male): The male population in the Arcadia town for the selected age group is shown in the following column.
    • Population (Female): The female population in the Arcadia town for the selected age group is shown in the following column.
    • Total Population: The total population of the Arcadia town for the selected age group is shown in the following column.

    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 Arcadia town Population by Age. You can refer the same here

  12. N

    Lone Tree, IA Population Pyramid Dataset: Age Groups, Male and Female...

    • neilsberg.com
    csv, json
    Updated Sep 16, 2023
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Neilsberg Research (2023). Lone Tree, IA Population Pyramid Dataset: Age Groups, Male and Female Population, and Total Population for Demographics Analysis [Dataset]. https://www.neilsberg.com/research/datasets/62cea500-3d85-11ee-9abe-0aa64bf2eeb2/
    Explore at:
    json, csvAvailable download formats
    Dataset updated
    Sep 16, 2023
    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
    Lone Tree, Iowa
    Variables measured
    Male and Female Population Under 5 Years, Male and Female Population over 85 years, Male and Female Total Population for Age Groups, Male and Female Population Between 5 and 9 years, Male and Female Population Between 10 and 14 years, Male and Female Population Between 15 and 19 years, Male and Female Population Between 20 and 24 years, Male and Female Population Between 25 and 29 years, Male and Female Population Between 30 and 34 years, Male and Female Population Between 35 and 39 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) 2017-2021 5-Year Estimates. To measure the three variables, namely (a) male population, (b) female population and (b) 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 data for the Lone Tree, IA population pyramid, which represents the Lone Tree population distribution across age and gender, using estimates from the U.S. Census Bureau American Community Survey 5-Year estimates. It lists the male and female population for each age group, along with the total population for those age groups. Higher numbers at the bottom of the table suggest population growth, whereas higher numbers at the top indicate declining birth rates. Furthermore, the dataset can be utilized to understand the youth dependency ratio, old-age dependency ratio, total dependency ratio, and potential support ratio.

    Key observations

    • Youth dependency ratio, which is the number of children aged 0-14 per 100 persons aged 15-64, for Lone Tree, IA, is 24.6.
    • Old-age dependency ratio, which is the number of persons aged 65 or over per 100 persons aged 15-64, for Lone Tree, IA, is 25.5.
    • Total dependency ratio for Lone Tree, IA is 50.1.
    • Potential support ratio, which is the number of youth (working age population) per elderly, for Lone Tree, IA is 3.9.
    Content

    When available, the data consists of estimates from the U.S. Census Bureau American Community Survey (ACS) 2017-2021 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 for the Lone Tree population analysis. Total expected values are 18 and are define above in the age groups section.
    • Population (Male): The male population in the Lone Tree for the selected age group is shown in the following column.
    • Population (Female): The female population in the Lone Tree for the selected age group is shown in the following column.
    • Total Population: The total population of the Lone Tree for the selected age group is shown in the following column.

    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 Lone Tree Population by Age. You can refer the same here

  13. N

    Dawes County, NE Population Pyramid Dataset: Age Groups, Male and Female...

    • neilsberg.com
    csv, json
    Updated Sep 16, 2023
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Neilsberg Research (2023). Dawes County, NE Population Pyramid Dataset: Age Groups, Male and Female Population, and Total Population for Demographics Analysis [Dataset]. https://www.neilsberg.com/research/datasets/6241c500-3d85-11ee-9abe-0aa64bf2eeb2/
    Explore at:
    json, csvAvailable download formats
    Dataset updated
    Sep 16, 2023
    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
    Nebraska, Dawes County
    Variables measured
    Male and Female Population Under 5 Years, Male and Female Population over 85 years, Male and Female Total Population for Age Groups, Male and Female Population Between 5 and 9 years, Male and Female Population Between 10 and 14 years, Male and Female Population Between 15 and 19 years, Male and Female Population Between 20 and 24 years, Male and Female Population Between 25 and 29 years, Male and Female Population Between 30 and 34 years, Male and Female Population Between 35 and 39 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) 2017-2021 5-Year Estimates. To measure the three variables, namely (a) male population, (b) female population and (b) 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 data for the Dawes County, NE population pyramid, which represents the Dawes County population distribution across age and gender, using estimates from the U.S. Census Bureau American Community Survey 5-Year estimates. It lists the male and female population for each age group, along with the total population for those age groups. Higher numbers at the bottom of the table suggest population growth, whereas higher numbers at the top indicate declining birth rates. Furthermore, the dataset can be utilized to understand the youth dependency ratio, old-age dependency ratio, total dependency ratio, and potential support ratio.

    Key observations

    • Youth dependency ratio, which is the number of children aged 0-14 per 100 persons aged 15-64, for Dawes County, NE, is 23.9.
    • Old-age dependency ratio, which is the number of persons aged 65 or over per 100 persons aged 15-64, for Dawes County, NE, is 27.2.
    • Total dependency ratio for Dawes County, NE is 51.1.
    • Potential support ratio, which is the number of youth (working age population) per elderly, for Dawes County, NE is 3.7.
    Content

    When available, the data consists of estimates from the U.S. Census Bureau American Community Survey (ACS) 2017-2021 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 for the Dawes County population analysis. Total expected values are 18 and are define above in the age groups section.
    • Population (Male): The male population in the Dawes County for the selected age group is shown in the following column.
    • Population (Female): The female population in the Dawes County for the selected age group is shown in the following column.
    • Total Population: The total population of the Dawes County for the selected age group is shown in the following column.

    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 Dawes County Population by Age. You can refer the same here

  14. N

    Kannapolis, NC Population Pyramid Dataset: Age Groups, Male and Female...

    • neilsberg.com
    csv, json
    Updated Sep 16, 2023
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Neilsberg Research (2023). Kannapolis, NC Population Pyramid Dataset: Age Groups, Male and Female Population, and Total Population for Demographics Analysis [Dataset]. https://www.neilsberg.com/research/datasets/62b0f500-3d85-11ee-9abe-0aa64bf2eeb2/
    Explore at:
    json, csvAvailable download formats
    Dataset updated
    Sep 16, 2023
    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
    Kannapolis, North Carolina
    Variables measured
    Male and Female Population Under 5 Years, Male and Female Population over 85 years, Male and Female Total Population for Age Groups, Male and Female Population Between 5 and 9 years, Male and Female Population Between 10 and 14 years, Male and Female Population Between 15 and 19 years, Male and Female Population Between 20 and 24 years, Male and Female Population Between 25 and 29 years, Male and Female Population Between 30 and 34 years, Male and Female Population Between 35 and 39 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) 2017-2021 5-Year Estimates. To measure the three variables, namely (a) male population, (b) female population and (b) 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 data for the Kannapolis, NC population pyramid, which represents the Kannapolis population distribution across age and gender, using estimates from the U.S. Census Bureau American Community Survey 5-Year estimates. It lists the male and female population for each age group, along with the total population for those age groups. Higher numbers at the bottom of the table suggest population growth, whereas higher numbers at the top indicate declining birth rates. Furthermore, the dataset can be utilized to understand the youth dependency ratio, old-age dependency ratio, total dependency ratio, and potential support ratio.

    Key observations

    • Youth dependency ratio, which is the number of children aged 0-14 per 100 persons aged 15-64, for Kannapolis, NC, is 34.3.
    • Old-age dependency ratio, which is the number of persons aged 65 or over per 100 persons aged 15-64, for Kannapolis, NC, is 22.9.
    • Total dependency ratio for Kannapolis, NC is 57.2.
    • Potential support ratio, which is the number of youth (working age population) per elderly, for Kannapolis, NC is 4.4.
    Content

    When available, the data consists of estimates from the U.S. Census Bureau American Community Survey (ACS) 2017-2021 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 for the Kannapolis population analysis. Total expected values are 18 and are define above in the age groups section.
    • Population (Male): The male population in the Kannapolis for the selected age group is shown in the following column.
    • Population (Female): The female population in the Kannapolis for the selected age group is shown in the following column.
    • Total Population: The total population of the Kannapolis for the selected age group is shown in the following column.

    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 Kannapolis Population by Age. You can refer the same here

  15. N

    Woodinville, WA Population Pyramid Dataset: Age Groups, Male and Female...

    • 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). Woodinville, WA Population Pyramid Dataset: Age Groups, Male and Female Population, and Total Population for Demographics Analysis // 2025 Edition [Dataset]. https://www.neilsberg.com/research/datasets/527a500c-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
    Woodinville, Washington
    Variables measured
    Male and Female Population Under 5 Years, Male and Female Population over 85 years, Male and Female Total Population for Age Groups, Male and Female Population Between 5 and 9 years, Male and Female Population Between 10 and 14 years, Male and Female Population Between 15 and 19 years, Male and Female Population Between 20 and 24 years, Male and Female Population Between 25 and 29 years, Male and Female Population Between 30 and 34 years, Male and Female Population Between 35 and 39 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 three variables, namely (a) male population, (b) female population and (b) 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 data for the Woodinville, WA population pyramid, which represents the Woodinville population distribution across age and gender, using estimates from the U.S. Census Bureau American Community Survey (ACS) 2019-2023 5-Year Estimates. It lists the male and female population for each age group, along with the total population for those age groups. Higher numbers at the bottom of the table suggest population growth, whereas higher numbers at the top indicate declining birth rates. Furthermore, the dataset can be utilized to understand the youth dependency ratio, old-age dependency ratio, total dependency ratio, and potential support ratio.

    Key observations

    • Youth dependency ratio, which is the number of children aged 0-14 per 100 persons aged 15-64, for Woodinville, WA, is 29.1.
    • Old-age dependency ratio, which is the number of persons aged 65 or over per 100 persons aged 15-64, for Woodinville, WA, is 20.9.
    • Total dependency ratio for Woodinville, WA is 50.0.
    • Potential support ratio, which is the number of youth (working age population) per elderly, for Woodinville, WA is 4.8.
    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 for the Woodinville population analysis. Total expected values are 18 and are define above in the age groups section.
    • Population (Male): The male population in the Woodinville for the selected age group is shown in the following column.
    • Population (Female): The female population in the Woodinville for the selected age group is shown in the following column.
    • Total Population: The total population of the Woodinville for the selected age group is shown in the following column.

    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 Woodinville Population by Age. You can refer the same here

  16. N

    Monmouth, IA Population Pyramid Dataset: Age Groups, Male and Female...

    • 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). Monmouth, IA Population Pyramid Dataset: Age Groups, Male and Female Population, and Total Population for Demographics Analysis // 2025 Edition [Dataset]. https://www.neilsberg.com/research/datasets/52600ee4-f122-11ef-8c1b-3860777c1fe6/
    Explore at:
    json, csvAvailable 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
    Iowa, Monmouth
    Variables measured
    Male and Female Population Under 5 Years, Male and Female Population over 85 years, Male and Female Total Population for Age Groups, Male and Female Population Between 5 and 9 years, Male and Female Population Between 10 and 14 years, Male and Female Population Between 15 and 19 years, Male and Female Population Between 20 and 24 years, Male and Female Population Between 25 and 29 years, Male and Female Population Between 30 and 34 years, Male and Female Population Between 35 and 39 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 three variables, namely (a) male population, (b) female population and (b) 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 data for the Monmouth, IA population pyramid, which represents the Monmouth population distribution across age and gender, using estimates from the U.S. Census Bureau American Community Survey (ACS) 2019-2023 5-Year Estimates. It lists the male and female population for each age group, along with the total population for those age groups. Higher numbers at the bottom of the table suggest population growth, whereas higher numbers at the top indicate declining birth rates. Furthermore, the dataset can be utilized to understand the youth dependency ratio, old-age dependency ratio, total dependency ratio, and potential support ratio.

    Key observations

    • Youth dependency ratio, which is the number of children aged 0-14 per 100 persons aged 15-64, for Monmouth, IA, is 16.1.
    • Old-age dependency ratio, which is the number of persons aged 65 or over per 100 persons aged 15-64, for Monmouth, IA, is 64.5.
    • Total dependency ratio for Monmouth, IA is 80.6.
    • Potential support ratio, which is the number of youth (working age population) per elderly, for Monmouth, IA is 1.6.
    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 for the Monmouth population analysis. Total expected values are 18 and are define above in the age groups section.
    • Population (Male): The male population in the Monmouth for the selected age group is shown in the following column.
    • Population (Female): The female population in the Monmouth for the selected age group is shown in the following column.
    • Total Population: The total population of the Monmouth for the selected age group is shown in the following column.

    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 Monmouth Population by Age. You can refer the same here

  17. N

    Lenox, GA Population Pyramid Dataset: Age Groups, Male and Female...

    • neilsberg.com
    csv, json
    Updated Sep 16, 2023
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Neilsberg Research (2023). Lenox, GA Population Pyramid Dataset: Age Groups, Male and Female Population, and Total Population for Demographics Analysis [Dataset]. https://www.neilsberg.com/research/datasets/62c500ed-3d85-11ee-9abe-0aa64bf2eeb2/
    Explore at:
    json, csvAvailable download formats
    Dataset updated
    Sep 16, 2023
    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
    Georgia, Lenox
    Variables measured
    Male and Female Population Under 5 Years, Male and Female Population over 85 years, Male and Female Total Population for Age Groups, Male and Female Population Between 5 and 9 years, Male and Female Population Between 10 and 14 years, Male and Female Population Between 15 and 19 years, Male and Female Population Between 20 and 24 years, Male and Female Population Between 25 and 29 years, Male and Female Population Between 30 and 34 years, Male and Female Population Between 35 and 39 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) 2017-2021 5-Year Estimates. To measure the three variables, namely (a) male population, (b) female population and (b) 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 data for the Lenox, GA population pyramid, which represents the Lenox population distribution across age and gender, using estimates from the U.S. Census Bureau American Community Survey 5-Year estimates. It lists the male and female population for each age group, along with the total population for those age groups. Higher numbers at the bottom of the table suggest population growth, whereas higher numbers at the top indicate declining birth rates. Furthermore, the dataset can be utilized to understand the youth dependency ratio, old-age dependency ratio, total dependency ratio, and potential support ratio.

    Key observations

    • Youth dependency ratio, which is the number of children aged 0-14 per 100 persons aged 15-64, for Lenox, GA, is 22.2.
    • Old-age dependency ratio, which is the number of persons aged 65 or over per 100 persons aged 15-64, for Lenox, GA, is 34.7.
    • Total dependency ratio for Lenox, GA is 56.9.
    • Potential support ratio, which is the number of youth (working age population) per elderly, for Lenox, GA is 2.9.
    Content

    When available, the data consists of estimates from the U.S. Census Bureau American Community Survey (ACS) 2017-2021 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 for the Lenox population analysis. Total expected values are 18 and are define above in the age groups section.
    • Population (Male): The male population in the Lenox for the selected age group is shown in the following column.
    • Population (Female): The female population in the Lenox for the selected age group is shown in the following column.
    • Total Population: The total population of the Lenox for the selected age group is shown in the following column.

    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 Lenox Population by Age. You can refer the same here

  18. N

    Nectar, AL Population Pyramid Dataset: Age Groups, Male and Female...

    • neilsberg.com
    csv, json
    Updated Jul 24, 2024
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Neilsberg Research (2024). Nectar, AL Population Pyramid Dataset: Age Groups, Male and Female Population, and Total Population for Demographics Analysis // 2024 Edition [Dataset]. https://www.neilsberg.com/research/datasets/f03cf500-4983-11ef-ae5d-3860777c1fe6/
    Explore at:
    csv, jsonAvailable download formats
    Dataset updated
    Jul 24, 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
    Nectar
    Variables measured
    Male and Female Population Under 5 Years, Male and Female Population over 85 years, Male and Female Total Population for Age Groups, Male and Female Population Between 5 and 9 years, Male and Female Population Between 10 and 14 years, Male and Female Population Between 15 and 19 years, Male and Female Population Between 20 and 24 years, Male and Female Population Between 25 and 29 years, Male and Female Population Between 30 and 34 years, Male and Female Population Between 35 and 39 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) 2018-2022 5-Year Estimates. To measure the three variables, namely (a) male population, (b) female population and (b) 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 data for the Nectar, AL population pyramid, which represents the Nectar population distribution across age and gender, using estimates from the U.S. Census Bureau American Community Survey (ACS) 2018-2022 5-Year Estimates. It lists the male and female population for each age group, along with the total population for those age groups. Higher numbers at the bottom of the table suggest population growth, whereas higher numbers at the top indicate declining birth rates. Furthermore, the dataset can be utilized to understand the youth dependency ratio, old-age dependency ratio, total dependency ratio, and potential support ratio.

    Key observations

    • Youth dependency ratio, which is the number of children aged 0-14 per 100 persons aged 15-64, for Nectar, AL, is 60.4.
    • Old-age dependency ratio, which is the number of persons aged 65 or over per 100 persons aged 15-64, for Nectar, AL, is 26.3.
    • Total dependency ratio for Nectar, AL is 86.7.
    • Potential support ratio, which is the number of youth (working age population) per elderly, for Nectar, AL is 3.8.
    Content

    When available, the data consists of estimates from the U.S. Census Bureau American Community Survey (ACS) 2018-2022 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 for the Nectar population analysis. Total expected values are 18 and are define above in the age groups section.
    • Population (Male): The male population in the Nectar for the selected age group is shown in the following column.
    • Population (Female): The female population in the Nectar for the selected age group is shown in the following column.
    • Total Population: The total population of the Nectar for the selected age group is shown in the following column.

    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 Nectar Population by Age. You can refer the same here

  19. N

    Ferndale, PA Population Pyramid Dataset: Age Groups, Male and Female...

    • neilsberg.com
    csv, json
    Updated Jul 24, 2024
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Neilsberg Research (2024). Ferndale, PA Population Pyramid Dataset: Age Groups, Male and Female Population, and Total Population for Demographics Analysis // 2024 Edition [Dataset]. https://www.neilsberg.com/research/datasets/f021f500-4983-11ef-ae5d-3860777c1fe6/?req=download&type=csv
    Explore at:
    json, csvAvailable download formats
    Dataset updated
    Jul 24, 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
    Ferndale, Pennsylvania
    Variables measured
    Male and Female Population Under 5 Years, Male and Female Population over 85 years, Male and Female Total Population for Age Groups, Male and Female Population Between 5 and 9 years, Male and Female Population Between 10 and 14 years, Male and Female Population Between 15 and 19 years, Male and Female Population Between 20 and 24 years, Male and Female Population Between 25 and 29 years, Male and Female Population Between 30 and 34 years, Male and Female Population Between 35 and 39 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) 2018-2022 5-Year Estimates. To measure the three variables, namely (a) male population, (b) female population and (b) 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 data for the Ferndale, PA population pyramid, which represents the Ferndale population distribution across age and gender, using estimates from the U.S. Census Bureau American Community Survey (ACS) 2018-2022 5-Year Estimates. It lists the male and female population for each age group, along with the total population for those age groups. Higher numbers at the bottom of the table suggest population growth, whereas higher numbers at the top indicate declining birth rates. Furthermore, the dataset can be utilized to understand the youth dependency ratio, old-age dependency ratio, total dependency ratio, and potential support ratio.

    Key observations

    • Youth dependency ratio, which is the number of children aged 0-14 per 100 persons aged 15-64, for Ferndale, PA, is 25.6.
    • Old-age dependency ratio, which is the number of persons aged 65 or over per 100 persons aged 15-64, for Ferndale, PA, is 31.8.
    • Total dependency ratio for Ferndale, PA is 57.4.
    • Potential support ratio, which is the number of youth (working age population) per elderly, for Ferndale, PA is 3.1.
    Content

    When available, the data consists of estimates from the U.S. Census Bureau American Community Survey (ACS) 2018-2022 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 for the Ferndale population analysis. Total expected values are 18 and are define above in the age groups section.
    • Population (Male): The male population in the Ferndale for the selected age group is shown in the following column.
    • Population (Female): The female population in the Ferndale for the selected age group is shown in the following column.
    • Total Population: The total population of the Ferndale for the selected age group is shown in the following column.

    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 Ferndale Population by Age. You can refer the same here

  20. Not seeing a result you expected?
    Learn how you can add new datasets to our index.

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