74 datasets found
  1. World Population Dataset

    • kaggle.com
    Updated Sep 2, 2022
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Amit Kumar Sahu (2022). World Population Dataset [Dataset]. https://www.kaggle.com/datasets/asahu40/world-population-dataset
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Sep 2, 2022
    Dataset provided by
    Kagglehttp://kaggle.com/
    Authors
    Amit Kumar Sahu
    License

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

    Area covered
    World
    Description

    This is a Dataset of the World Population Consisting of Each and Every Country. I have attempted to analyze the same data to bring some insights out of it. The dataset consists of 234 rows and 17 columns. I will analyze the same data and bring the below pieces of information regarding the same.

    1. Continent Population Characteristics Analysis.
    2. Analysis of Countries.
      • Top 10 Most Populated and Least Populated Countries
      • Top 10 Largest and Smallest Countries as per Area
      • Population Growth From 1970 to 2020 (50 Years)
    3. Countries Represent % Of World Population.
      • Countries that represent below 0.1% of the World Population.
      • Countries that represent above 2% of the world Population
      • Top 10 Over Populated Countries based on Density Per Sq KM.
      • Top 10 Least Populated Countries based on Density Per Sq KM.
  2. World Population

    • kaggle.com
    Updated Dec 29, 2021
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    khaIid (2021). World Population [Dataset]. https://www.kaggle.com/datasets/khaiid/world-population/code
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Dec 29, 2021
    Dataset provided by
    Kaggle
    Authors
    khaIid
    License

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

    Area covered
    World
    Description

    Content

    The dataset has 6 columns described as following:

    Rank: Country rank by population

    Country: Country name

    Region: Country region

    Population: Country population

    Percentage: Percentage of population worldwide

    Date: Date when population was measured

    Questions to be answered

    What is the population of each region ? Which country has the most population in each region ? What is the percentage of the first 10 countries ?

  3. o

    Ten Most Populous Countries, 2020 to 2050 - Datasets - Open Data Pakistan

    • opendata.com.pk
    Updated May 16, 2023
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    (2023). Ten Most Populous Countries, 2020 to 2050 - Datasets - Open Data Pakistan [Dataset]. https://opendata.com.pk/dataset/ten-most-populous-countries-2020-to-2050
    Explore at:
    Dataset updated
    May 16, 2023
    Area covered
    Pakistan
    Description

    Ten Most Populous Countries, 2020 to 2050

  4. 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/datasets/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

  5. T

    POPULATION by Country in ASIA

    • tradingeconomics.com
    csv, excel, json, xml
    Updated May 26, 2017
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    TRADING ECONOMICS (2017). POPULATION by Country in ASIA [Dataset]. https://tradingeconomics.com/country-list/population?continent=asia
    Explore at:
    json, csv, excel, xmlAvailable download formats
    Dataset updated
    May 26, 2017
    Dataset authored and provided by
    TRADING ECONOMICS
    License

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

    Time period covered
    2025
    Area covered
    Asia
    Description

    This dataset provides values for POPULATION reported in several countries. The data includes current values, previous releases, historical highs and record lows, release frequency, reported unit and currency.

  6. w

    Afrobarometer Survey 1 1999-2000, Merged 7 Country - Botswana, Lesotho,...

    • microdata.worldbank.org
    • catalog.ihsn.org
    Updated Apr 27, 2021
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Institute for Democracy in South Africa (IDASA) (2021). Afrobarometer Survey 1 1999-2000, Merged 7 Country - Botswana, Lesotho, Malawi, Namibia, South Africa, Zambia, Zimbabwe [Dataset]. https://microdata.worldbank.org/index.php/catalog/889
    Explore at:
    Dataset updated
    Apr 27, 2021
    Dataset provided by
    Michigan State University (MSU)
    Institute for Democracy in South Africa (IDASA)
    Ghana Centre for Democratic Development (CDD-Ghana)
    Time period covered
    1999 - 2000
    Area covered
    Zimbabwe, Namibia, Zambia, Malawi, Lesotho, Botswana, South Africa, Africa
    Description

    Abstract

    Round 1 of the Afrobarometer survey was conducted from July 1999 through June 2001 in 12 African countries, to solicit public opinion on democracy, governance, markets, and national identity. The full 12 country dataset released was pieced together out of different projects, Round 1 of the Afrobarometer survey,the old Southern African Democracy Barometer, and similar surveys done in West and East Africa.

    The 7 country dataset is a subset of the Round 1 survey dataset, and consists of a combined dataset for the 7 Southern African countries surveyed with other African countries in Round 1, 1999-2000 (Botswana, Lesotho, Malawi, Namibia, South Africa, Zambia and Zimbabwe). It is a useful dataset because, in contrast to the full 12 country Round 1 dataset, all countries in this dataset were surveyed with the identical questionnaire

    Geographic coverage

    Botswana Lesotho Malawi Namibia South Africa Zambia Zimbabwe

    Analysis unit

    Basic units of analysis that the study investigates include: individuals and groups

    Kind of data

    Sample survey data [ssd]

    Sampling procedure

    A new sample has to be drawn for each round of Afrobarometer surveys. Whereas the standard sample size for Round 3 surveys will be 1200 cases, a larger sample size will be required in societies that are extremely heterogeneous (such as South Africa and Nigeria), where the sample size will be increased to 2400. Other adaptations may be necessary within some countries to account for the varying quality of the census data or the availability of census maps.

    The sample is designed as a representative cross-section of all citizens of voting age in a given country. The goal is to give every adult citizen an equal and known chance of selection for interview. We strive to reach this objective by (a) strictly applying random selection methods at every stage of sampling and by (b) applying sampling with probability proportionate to population size wherever possible. A randomly selected sample of 1200 cases allows inferences to national adult populations with a margin of sampling error of no more than plus or minus 2.5 percent with a confidence level of 95 percent. If the sample size is increased to 2400, the confidence interval shrinks to plus or minus 2 percent.

    Sample Universe

    The sample universe for Afrobarometer surveys includes all citizens of voting age within the country. In other words, we exclude anyone who is not a citizen and anyone who has not attained this age (usually 18 years) on the day of the survey. Also excluded are areas determined to be either inaccessible or not relevant to the study, such as those experiencing armed conflict or natural disasters, as well as national parks and game reserves. As a matter of practice, we have also excluded people living in institutionalized settings, such as students in dormitories and persons in prisons or nursing homes.

    What to do about areas experiencing political unrest? On the one hand we want to include them because they are politically important. On the other hand, we want to avoid stretching out the fieldwork over many months while we wait for the situation to settle down. It was agreed at the 2002 Cape Town Planning Workshop that it is difficult to come up with a general rule that will fit all imaginable circumstances. We will therefore make judgments on a case-by-case basis on whether or not to proceed with fieldwork or to exclude or substitute areas of conflict. National Partners are requested to consult Core Partners on any major delays, exclusions or substitutions of this sort.

    Sample Design

    The sample design is a clustered, stratified, multi-stage, area probability sample.

    To repeat the main sampling principle, the objective of the design is to give every sample element (i.e. adult citizen) an equal and known chance of being chosen for inclusion in the sample. We strive to reach this objective by (a) strictly applying random selection methods at every stage of sampling and by (b) applying sampling with probability proportionate to population size wherever possible.

    In a series of stages, geographically defined sampling units of decreasing size are selected. To ensure that the sample is representative, the probability of selection at various stages is adjusted as follows:

    The sample is stratified by key social characteristics in the population such as sub-national area (e.g. region/province) and residential locality (urban or rural). The area stratification reduces the likelihood that distinctive ethnic or language groups are left out of the sample. And the urban/rural stratification is a means to make sure that these localities are represented in their correct proportions. Wherever possible, and always in the first stage of sampling, random sampling is conducted with probability proportionate to population size (PPPS). The purpose is to guarantee that larger (i.e., more populated) geographical units have a proportionally greater probability of being chosen into the sample. The sampling design has four stages

    A first-stage to stratify and randomly select primary sampling units;

    A second-stage to randomly select sampling start-points;

    A third stage to randomly choose households;

    A final-stage involving the random selection of individual respondents

    We shall deal with each of these stages in turn.

    STAGE ONE: Selection of Primary Sampling Units (PSUs)

    The primary sampling units (PSU's) are the smallest, well-defined geographic units for which reliable population data are available. In most countries, these will be Census Enumeration Areas (or EAs). Most national census data and maps are broken down to the EA level. In the text that follows we will use the acronyms PSU and EA interchangeably because, when census data are employed, they refer to the same unit.

    We strongly recommend that NIs use official national census data as the sampling frame for Afrobarometer surveys. Where recent or reliable census data are not available, NIs are asked to inform the relevant Core Partner before they substitute any other demographic data. Where the census is out of date, NIs should consult a demographer to obtain the best possible estimates of population growth rates. These should be applied to the outdated census data in order to make projections of population figures for the year of the survey. It is important to bear in mind that population growth rates vary by area (region) and (especially) between rural and urban localities. Therefore, any projected census data should include adjustments to take such variations into account.

    Indeed, we urge NIs to establish collegial working relationships within professionals in the national census bureau, not only to obtain the most recent census data, projections, and maps, but to gain access to sampling expertise. NIs may even commission a census statistician to draw the sample to Afrobarometer specifications, provided that provision for this service has been made in the survey budget.

    Regardless of who draws the sample, the NIs should thoroughly acquaint themselves with the strengths and weaknesses of the available census data and the availability and quality of EA maps. The country and methodology reports should cite the exact census data used, its known shortcomings, if any, and any projections made from the data. At minimum, the NI must know the size of the population and the urban/rural population divide in each region in order to specify how to distribute population and PSU's in the first stage of sampling. National investigators should obtain this written data before they attempt to stratify the sample.

    Once this data is obtained, the sample population (either 1200 or 2400) should be stratified, first by area (region/province) and then by residential locality (urban or rural). In each case, the proportion of the sample in each locality in each region should be the same as its proportion in the national population as indicated by the updated census figures.

    Having stratified the sample, it is then possible to determine how many PSU's should be selected for the country as a whole, for each region, and for each urban or rural locality.

    The total number of PSU's to be selected for the whole country is determined by calculating the maximum degree of clustering of interviews one can accept in any PSU. Because PSUs (which are usually geographically small EAs) tend to be socially homogenous we do not want to select too many people in any one place. Thus, the Afrobarometer has established a standard of no more than 8 interviews per PSU. For a sample size of 1200, the sample must therefore contain 150 PSUs/EAs (1200 divided by 8). For a sample size of 2400, there must be 300 PSUs/EAs.

    These PSUs should then be allocated proportionally to the urban and rural localities within each regional stratum of the sample. Let's take a couple of examples from a country with a sample size of 1200. If the urban locality of Region X in this country constitutes 10 percent of the current national population, then the sample for this stratum should be 15 PSUs (calculated as 10 percent of 150 PSUs). If the rural population of Region Y constitutes 4 percent of the current national population, then the sample for this stratum should be 6 PSU's.

    The next step is to select particular PSUs/EAs using random methods. Using the above example of the rural localities in Region Y, let us say that you need to pick 6 sample EAs out of a census list that contains a total of 240 rural EAs in Region Y. But which 6? If the EAs created by the national census bureau are of equal or roughly equal population size, then selection is relatively straightforward. Just number all EAs consecutively, then make six selections using a table of random numbers. This procedure, known as simple random sampling (SRS), will

  7. Estimates of the population for the UK, England, Wales, Scotland, and...

    • ons.gov.uk
    • cy.ons.gov.uk
    xlsx
    Updated Oct 8, 2024
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Office for National Statistics (2024). Estimates of the population for the UK, England, Wales, Scotland, and Northern Ireland [Dataset]. https://www.ons.gov.uk/peoplepopulationandcommunity/populationandmigration/populationestimates/datasets/populationestimatesforukenglandandwalesscotlandandnorthernireland
    Explore at:
    xlsxAvailable download formats
    Dataset updated
    Oct 8, 2024
    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
    Ireland, United Kingdom, England
    Description

    National and subnational mid-year population estimates for the UK and its constituent countries by administrative area, age and sex (including components of population change, median age and population density).

  8. U

    United States US: Income Share Held by Highest 10%

    • ceicdata.com
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    CEICdata.com, United States US: Income Share Held by Highest 10% [Dataset]. https://www.ceicdata.com/en/united-states/poverty/us-income-share-held-by-highest-10
    Explore at:
    Dataset provided by
    CEICdata.com
    License

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

    Time period covered
    Dec 1, 1979 - Dec 1, 2016
    Area covered
    United States
    Description

    United States US: Income Share Held by Highest 10% data was reported at 30.600 % in 2016. This records an increase from the previous number of 30.100 % for 2013. United States US: Income Share Held by Highest 10% data is updated yearly, averaging 30.100 % from Dec 1979 (Median) to 2016, with 11 observations. The data reached an all-time high of 30.600 % in 2016 and a record low of 25.300 % in 1979. United States US: Income Share Held by Highest 10% data remains active status in CEIC and is reported by World Bank. The data is categorized under Global Database’s United States – Table US.World Bank.WDI: Poverty. Percentage share of income or consumption is the share that accrues to subgroups of population indicated by deciles or quintiles.; ; World Bank, Development Research Group. Data are based on primary household survey data obtained from government statistical agencies and World Bank country departments. Data for high-income economies are from the Luxembourg Income Study database. For more information and methodology, please see PovcalNet (http://iresearch.worldbank.org/PovcalNet/index.htm).; ; The World Bank’s internationally comparable poverty monitoring database now draws on income or detailed consumption data from more than one thousand six hundred household surveys across 164 countries in six regions and 25 other high income countries (industrialized economies). While income distribution data are published for all countries with data available, poverty data are published for low- and middle-income countries and countries eligible to receive loans from the World Bank (such as Chile) and recently graduated countries (such as Estonia) only. See PovcalNet (http://iresearch.worldbank.org/PovcalNet/WhatIsNew.aspx) for definitions of geographical regions and industrialized countries.

  9. g

    State of World Liberty Project, World Freedom Index, Worldwide by Country,...

    • geocommons.com
    Updated Apr 29, 2008
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    data (2008). State of World Liberty Project, World Freedom Index, Worldwide by Country, 2006 [Dataset]. http://geocommons.com/search.html
    Explore at:
    Dataset updated
    Apr 29, 2008
    Dataset provided by
    data
    State of World Liberty Project
    Description

    This is the World Freedom index, By the State of World Liberty Project. It ranks various countries by various forms of freedom and created an index to see which countries had the most freedom. USA finished 8th, with Estonia in 1st place and North Korea having the least freedom. Source URL: http://www.stateofworldliberty.org/report/rankings.html This Dataset has a ranking for the countries, just to be clear, when you map out the rankings of countries, the highest ranked countries will not be the brightest on the map. Estonia is Ranked #1, but the value of 1 is lower than the value assigned to North Korea (158). so just be aware of that. In short, for mapping, use the Scores not the Ranks.

  10. T

    POPULATION by Country in AFRICA

    • tradingeconomics.com
    csv, excel, json, xml
    Updated May 27, 2017
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    TRADING ECONOMICS (2017). POPULATION by Country in AFRICA [Dataset]. https://tradingeconomics.com/country-list/population?continent=africa
    Explore at:
    xml, excel, json, csvAvailable download formats
    Dataset updated
    May 27, 2017
    Dataset authored and provided by
    TRADING ECONOMICS
    License

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

    Time period covered
    2025
    Area covered
    Africa
    Description

    This dataset provides values for POPULATION reported in several countries. The data includes current values, previous releases, historical highs and record lows, release frequency, reported unit and currency.

  11. g

    PHIDU - Birthplace - Top 10 NES Countries (PHA) 2016 | gimi9.com

    • gimi9.com
    Updated Jul 31, 2025
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    (2025). PHIDU - Birthplace - Top 10 NES Countries (PHA) 2016 | gimi9.com [Dataset]. https://gimi9.com/dataset/au_tua-phidu-phidu-birthplace-top-ten-nes-pha-2016-pha2011/
    Explore at:
    Dataset updated
    Jul 31, 2025
    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

    This dataset, released August 2017, contains the top ten birthplaces of people born in non-English speaking countries, 2016. The data comprise residents of Australia who were born overseas in one of the predominantly non-English speaking countries which are in the top ten for Australia in terms of high numbers of migrants. These are, from highest to lowest: China, India, Philippines, Vietnam, Italy, Malaysia, Sri Lanka, Germany, Republic of Korea (South), and Greece. The data is by Population Health Area (PHA) 2016 geographic boundaries based on the 2016 Australian Statistical Geography Standard (ASGS). Population Health Areas, developed by PHIDU, are comprised of a combination of whole SA2s and multiple (aggregates of) SA2s, where the SA2 is an area in the ABS structure. For more information please see the data source notes on the data. Source: Compiled by PHIDU based on the ABS Census of Population and Housing, August 2016. AURIN has spatially enabled the original data. Data that was not shown/not applicable/not published/not available for the specific area ('#', '..', '^', 'np, 'n.a.', 'n.y.a.' in original PHIDU data) was removed.It has been replaced by by Blank cells. For other keys and abbreviations refer to PHIDU Keys.

  12. Population by country of birth and nationality (Discontinued after June...

    • ons.gov.uk
    • cy.ons.gov.uk
    xls
    Updated Sep 25, 2021
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Office for National Statistics (2021). Population by country of birth and nationality (Discontinued after June 2021) [Dataset]. https://www.ons.gov.uk/peoplepopulationandcommunity/populationandmigration/internationalmigration/datasets/populationoftheunitedkingdombycountryofbirthandnationality
    Explore at:
    xlsAvailable download formats
    Dataset updated
    Sep 25, 2021
    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

    Description

    UK residents by broad country of birth and citizenship groups, broken down by UK country, local authority, unitary authority, metropolitan and London boroughs, and counties. Estimates from the Annual Population Survey.

  13. Afrobarometer Survey 2025 - Cameroon

    • microdata.worldbank.org
    • datacatalog.ihsn.org
    • +1more
    Updated Jun 18, 2025
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Ghana Centre for Democratic Development (CDD) (2025). Afrobarometer Survey 2025 - Cameroon [Dataset]. https://microdata.worldbank.org/index.php/catalog/6761
    Explore at:
    Dataset updated
    Jun 18, 2025
    Dataset provided by
    Institute for Justice and Reconciliationhttp://www.ijr.org.za/
    Ghana Centre for Democratic Development (CDD)
    Institute for Development Studies (IDS)
    University of Nairobi in Kenya
    Time period covered
    2025
    Area covered
    Cameroon
    Description

    Abstract

    The Afrobarometer is a comparative series of public attitude surveys that assess African citizen's attitudes to democracy and governance, markets, and civil society, among other topics. The surveys have been undertaken at periodic intervals since 1999. The Afrobarometer's coverage has increased over time. Round 1 (1999-2001) initially covered 7 countries and was later extended to 12 countries. Round 2 (2002-2004) surveyed citizens in 16 countries. Round 3 (2005-2006) 18 countries, Round 4 (2008) 20 countries, Round 5 (2011-2013) 34 countries, Round 6 (2014-2015) 36 countries, Round 7 (2016-2018) 34 countries, Round 8 (2019-2021), and Round 9 (2021-2023). The survey covers about 40 countries in Round 10.

    Geographic coverage

    National coverage

    Analysis unit

    Individual

    Universe

    Citizens of Cameroon who are 18 years and older

    Kind of data

    Sample survey data [ssd]

    Sampling procedure

    Afrobarometer uses national probability samples designed to meet the following criteria. Samples are designed to generate a sample that is a representative cross-section of all citizens of voting age in a given country. The goal is to give every adult citizen an equal and known chance of being selected for an interview. They achieve this by:

    • using random selection methods at every stage of sampling; • sampling at all stages with probability proportionate to population size wherever possible to ensure that larger (i.e., more populated) geographic units have a proportionally greater probability of being chosen into the sample.

    The sampling universe normally includes all citizens age 18 and older. As a standard practice, we exclude people living in institutionalized settings, such as students in dormitories, patients in hospitals, and persons in prisons or nursing homes. Occasionally, we must also exclude people living in areas determined to be inaccessible due to conflict or insecurity. Any such exclusion is noted in the technical information report (TIR) that accompanies each data set.

    Sample size and design Samples usually include either 1,200 or 2,400 cases. A randomly selected sample of n=1200 cases allows inferences to national adult populations with a margin of sampling error of no more than +/-2.8% with a confidence level of 95 percent. With a sample size of n=2400, the margin of error decreases to +/-2.0% at 95 percent confidence level.

    The sample design is a clustered, stratified, multi-stage, area probability sample. Specifically, we first stratify the sample according to the main sub-national unit of government (state, province, region, etc.) and by urban or rural location.

    Area stratification reduces the likelihood that distinctive ethnic or language groups are left out of the sample. Afrobarometer occasionally purposely oversamples certain populations that are politically significant within a country to ensure that the size of the sub-sample is large enough to be analysed. Any oversamples is noted in the TIR.

    Sample stages Samples are drawn in either four or five stages:

    Stage 1: In rural areas only, the first stage is to draw secondary sampling units (SSUs). SSUs are not used in urban areas, and in some countries they are not used in rural areas. See the TIR that accompanies each data set for specific details on the sample in any given country. Stage 2: We randomly select primary sampling units (PSU). Stage 3: We then randomly select sampling start points. Stage 4: Interviewers then randomly select households. Stage 5: Within the household, the interviewer randomly selects an individual respondent. Each interviewer alternates in each household between interviewing a man and interviewing a woman to ensure gender balance in the sample.

    Cameroon - Sample size: 1,200 - Sample design: Nationally representative, random, clustered, stratified, multi-stage area probability sample - Stratification: Region and urban-rural location - Stages: PSUs (from strata), start points, households, respondents - PSU selection: Probability Proportionate to Population Size (PPPS) - Cluster size: 8 households per PSU - Household selection: Randomly selected start points, followed by walk pattern using 5/10 interval - Respondent selection: Gender quota filled by alternating interviews between men and women; respondents of appropriate gender listed, after which computer randomly selects individual - Weighting: Weighted to account for individual selection probabilities - Sampling frame: 2005 population census

    Mode of data collection

    Face-to-face [f2f]

    Research instrument

    The Round 10 questionnaire has been developed by the Questionnaire Committee after reviewing the findings and feedback obtained in previous Rounds, and securing input on preferred new topics from a host of donors, analysts, and users of the data.

    Response rate

    Response rate was 52.8%.

    Sampling error estimates

    The sample size yields country-level results with a margin of error of +/-3 percentage points at a 95% confidence level.

  14. g

    Agingstats.gov, 10% of the Population Age 65 and Older by Country, World,...

    • geocommons.com
    Updated May 6, 2008
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    data (2008). Agingstats.gov, 10% of the Population Age 65 and Older by Country, World, 2006 [Dataset]. http://geocommons.com/search.html
    Explore at:
    Dataset updated
    May 6, 2008
    Dataset provided by
    data
    Agingstats.gov
    Description

    This dataset displays countries that had ten percent or more of their population age 65 and older. This data was collecte through agingstats.gov.

  15. g

    Reporters Without Borders, Freedom of the Press: Worldwide Ranks by Country,...

    • geocommons.com
    Updated Apr 29, 2008
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Reporters Without Borders (2008). Reporters Without Borders, Freedom of the Press: Worldwide Ranks by Country, World, 2004 [Dataset]. http://geocommons.com/search.html
    Explore at:
    Dataset updated
    Apr 29, 2008
    Dataset provided by
    Reporters Without Borders
    data
    Description

    This dataset shows where media and press are most free to express their views and opinions. Countries rankings are based on laws, violence, and deaths of reporters and journalists. This is a Different measure of freedom than the world freedom index but just as important. This dataset shows the availability of dissenting views and opinions allowed within a Country. Source URL: http://www.rsf.org/article.php3?id_article=11715

  16. Data set: 50 Muslim-majority countries and 50 richest non-Muslim countries...

    • figshare.com
    txt
    Updated Jun 1, 2023
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Ponn P Mahayosnand; Gloria Gheno (2023). Data set: 50 Muslim-majority countries and 50 richest non-Muslim countries based on GDP: Total number of COVID-19 cases and deaths on September 18, 2020 [Dataset]. http://doi.org/10.6084/m9.figshare.14034938.v2
    Explore at:
    txtAvailable download formats
    Dataset updated
    Jun 1, 2023
    Dataset provided by
    figshare
    Figsharehttp://figshare.com/
    Authors
    Ponn P Mahayosnand; Gloria Gheno
    License

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

    Description

    Associated with manuscript titled: Fifty Muslim-majority countries have fewer COVID-19 cases and deaths than the 50 richest non-Muslim countriesThe objective of this research was to determine the difference in the total number of COVID-19 cases and deaths between Muslim-majority and non-Muslim countries, and investigate reasons for the disparities. Methods: The 50 Muslim-majority countries had more than 50.0% Muslims with an average of 87.5%. The non-Muslim country sample consisted of 50 countries with the highest GDP while omitting any Muslim-majority countries listed. The non-Muslim countries’ average percentage of Muslims was 4.7%. Data pulled on September 18, 2020 included the percentage of Muslim population per country by World Population Review15 and GDP per country, population count, and total number of COVID-19 cases and deaths by Worldometers.16 The data set was transferred via an Excel spreadsheet on September 23, 2020 and analyzed. To measure COVID-19’s incidence in the countries, three different Average Treatment Methods (ATE) were used to validate the results. Results published as a preprint at https://doi.org/10.31235/osf.io/84zq5(15) Muslim Majority Countries 2020 [Internet]. Walnut (CA): World Population Review. 2020- [Cited 2020 Sept 28]. Available from: http://worldpopulationreview.com/country-rankings/muslim-majority-countries (16) Worldometers.info. Worldometer. Dover (DE): Worldometer; 2020 [cited 2020 Sept 28]. Available from: http://worldometers.info

  17. g

    City-Data, Largest and Smallest Difference Between High and Low...

    • geocommons.com
    Updated May 27, 2008
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    data (2008). City-Data, Largest and Smallest Difference Between High and Low Temperatures, USA, [Dataset]. http://geocommons.com/search.html
    Explore at:
    Dataset updated
    May 27, 2008
    Dataset provided by
    City-Data
    data
    Description

    This dataset illustrates the largest difference between high and low temperatures and the smallest difference between high and low temperatures in cities with 50,000 people or more. A value of -1 means that the data was not applicable. Also included are the rankings, the inverse ranking to be used for mapping purposes, the popualtion, the name of city and state, and the temperature degree difference. Source City-Data URL http//www.city-data.com/top2/c489.html http//www.city-data.com/top2/c490.html Date Accessed November 13,2007

  18. r

    Restructuring Large Housing Estates in European Cities: Good Practices and...

    • researchdata.edu.au
    • research-repository.rmit.edu.au
    Updated Nov 4, 2020
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    sjoerd de vos; sako musterd; ronald van kempen; Karien Dekker; 0000-0001-7361-591x (2020). Restructuring Large Housing Estates in European Cities: Good Practices and New Visions for Sustainable Neighbourhoods and Cities - data from 31 large housing estates in 10 European countries (2004) [Dataset]. http://doi.org/10.6084/M9.FIGSHARE.5436283.V1
    Explore at:
    Dataset updated
    Nov 4, 2020
    Dataset provided by
    RMIT University, Australia
    Authors
    sjoerd de vos; sako musterd; ronald van kempen; Karien Dekker; 0000-0001-7361-591x
    License

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

    Area covered
    Europe
    Description

    The empirical dataset is derived from a survey carried out on 25 estates in 14 cities in nine different European countries: France (Lyon), Germany (Berlin), Hungary (Budapest and Nyiregyha´za), Italy (Milan), the Netherlands (Amsterdam and Utrecht), Poland (Warsaw), Slovenia (Ljubljana and Koper), Spain (Barcelona and Madrid), and Sweden (Jo¨nko¨ping and Stockholm). The survey was part of the EU RESTATE project (Musterd & Van Kempen, 2005). A similar survey was constructed for all 25 estates.

    The survey was carried out between February and June 2004. In each case, a random sample was drawn, usually from the whole estate. For some estates, address lists were used as the basis for the sample; in other cases, the researchers first had to take a complete inventory of addresses themselves (for some deviations from this general trend and for an overview of response rates, see Musterd & Van Kempen, 2005). In most cities, survey teams were hired to carry out the survey. They worked under the supervision of the RESTATE partners. Briefings were organised to instruct the survey teams. In some cases (for example, in Amsterdam and Utrecht), interviewers were recruited from specific ethnic groups in order to increase the response rate among, for example, the Turkish and Moroccan residents on the estates. In other cases, family members translated questions during a face-to-face interview. The interviewers with an immigrant background were hired in those estates where this made sense. In some estates it was not necessary to do this because the number of immigrants was (close to) zero (as in most cases in CE Europe).

    The questionnaire could be completed by the respondents themselves, but also by the interviewers in a face-to-face interview.

    Data and Representativeness

    The data file contains 4756 respondents. Nearly all respondents indicated their satisfaction with the dwelling and the estate. Originally, the data file also contained cases from the UK.

    However, UK respondents were excluded from the analyses because of doubts about the reliability of the answers to the ethnic minority questions. This left 25 estates in nine countries. In general, older people and original populations are somewhat over-represented, while younger people and immigrant populations are relatively under-represented, despite the fact that in estates with a large minority population surveyors were also employed from minority ethnic groups. For younger people, this discrepancy probably derives from the extent of their activities outside the home, making them more difficult to reach. The under-representation of the immigrant population is presumably related to language and cultural differences. For more detailed information on the representation of population in each case, reference is made to the reports of the researchers in the different countries which can be downloaded from the programme website. All country reports indicate that despite these over- and under-representations, the survey results are valuable for the analyses of their own individual situation.

    This dataset is the result of a team effort lead by Professor Ronald van Kempen, Utrecht University with funding from the EU Fifth Framework.

  19. g

    United Nations Statistics Division, Television receivers (thousands) by...

    • geocommons.com
    Updated Apr 29, 2008
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    data (2008). United Nations Statistics Division, Television receivers (thousands) by Country, Global, 1990-1997 [Dataset]. http://geocommons.com/search.html
    Explore at:
    Dataset updated
    Apr 29, 2008
    Dataset provided by
    data
    Description

    This dataset displays the number of television receivers by country for the time period covering 1990 through 1997. Covered throughout this dataset is 150+ countries, This dataset was gathered from the United Nations Statistics Division. http://unstats.un.org/unsd/databases.htm Access Date: October 31, 2007

  20. Afrobarometer Survey 2024 - Gabon

    • datacatalog.ihsn.org
    • microdata.worldbank.org
    Updated Jun 18, 2025
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Institute for Development Studies (IDS) (2025). Afrobarometer Survey 2024 - Gabon [Dataset]. https://datacatalog.ihsn.org/catalog/12961
    Explore at:
    Dataset updated
    Jun 18, 2025
    Dataset provided by
    Institute for Justice and Reconciliationhttp://www.ijr.org.za/
    Ghana Centre for Democratic Development (CDD)
    Institute for Development Studies (IDS)
    University of Nairobi in Kenya
    Time period covered
    2024
    Area covered
    Gabon
    Description

    Abstract

    The Afrobarometer is a comparative series of public attitude surveys that assess African citizen's attitudes to democracy and governance, markets, and civil society, among other topics. The surveys have been undertaken at periodic intervals since 1999. The Afrobarometer's coverage has increased over time. Round 1 (1999-2001) initially covered 7 countries and was later extended to 12 countries. Round 2 (2002-2004) surveyed citizens in 16 countries. Round 3 (2005-2006) 18 countries, Round 4 (2008) 20 countries, Round 5 (2011-2013) 34 countries, Round 6 (2014-2015) 36 countries, Round 7 (2016-2018) 34 countries, Round 8 (2019-2021), and Round 9 (2021-2023). The survey covers about 40 countries in Round 10.

    Geographic coverage

    National coverage

    Analysis unit

    Individual

    Universe

    Citizens of Gabon who are 18 years and older

    Kind of data

    Sample survey data [ssd]

    Sampling procedure

    Afrobarometer uses national probability samples designed to meet the following criteria. Samples are designed to generate a sample that is a representative cross-section of all citizens of voting age in a given country. The goal is to give every adult citizen an equal and known chance of being selected for an interview. They achieve this by:

    • using random selection methods at every stage of sampling; • sampling at all stages with probability proportionate to population size wherever possible to ensure that larger (i.e., more populated) geographic units have a proportionally greater probability of being chosen into the sample.

    The sampling universe normally includes all citizens age 18 and older. As a standard practice, we exclude people living in institutionalized settings, such as students in dormitories, patients in hospitals, and persons in prisons or nursing homes. Occasionally, we must also exclude people living in areas determined to be inaccessible due to conflict or insecurity. Any such exclusion is noted in the technical information report (TIR) that accompanies each data set.

    Sample size and design Samples usually include either 1,200 or 2,400 cases. A randomly selected sample of n=1200 cases allows inferences to national adult populations with a margin of sampling error of no more than +/-2.8% with a confidence level of 95 percent. With a sample size of n=2400, the margin of error decreases to +/-2.0% at 95 percent confidence level.

    The sample design is a clustered, stratified, multi-stage, area probability sample. Specifically, we first stratify the sample according to the main sub-national unit of government (state, province, region, etc.) and by urban or rural location.

    Area stratification reduces the likelihood that distinctive ethnic or language groups are left out of the sample. Afrobarometer occasionally purposely oversamples certain populations that are politically significant within a country to ensure that the size of the sub-sample is large enough to be analysed. Any oversamples is noted in the TIR.

    Sample stages Samples are drawn in either four or five stages:

    Stage 1: In rural areas only, the first stage is to draw secondary sampling units (SSUs). SSUs are not used in urban areas, and in some countries they are not used in rural areas. See the TIR that accompanies each data set for specific details on the sample in any given country. Stage 2: We randomly select primary sampling units (PSU). Stage 3: We then randomly select sampling start points. Stage 4: Interviewers then randomly select households. Stage 5: Within the household, the interviewer randomly selects an individual respondent. Each interviewer alternates in each household between interviewing a man and interviewing a woman to ensure gender balance in the sample.

    Gabon - Sample size: 1,200 - Sample design: Nationally representative, random, clustered, stratified, multi-stage area probability sample - Stratification: Region and urban-rural location - Stages: PSUs (from strata), start points, households, respondents - PSU selection: Probability Proportionate to Population Size (PPPS) - Cluster size: 8 households per PSU - Household selection: Randomly selected start points, followed by walk pattern using 5/10 interval - Respondent selection: Gender quota filled by alternating interviews between men and women; respondents of appropriate gender listed, after which computer randomly selects individual - Weighting: Weighted to account for individual selection probabilities - Sampling frame: Recensement Général de la Population et des Logements (RGPL) de 2013 réalisée par la Direction Générale de la Statistique et des Etudes Economiques

    Mode of data collection

    Face-to-face [f2f]

    Research instrument

    The Round 10 questionnaire has been developed by the Questionnaire Committee after reviewing the findings and feedback obtained in previous Rounds, and securing input on preferred new topics from a host of donors, analysts, and users of the data.

    Response rate

    Response rate was 74.30%.

    Sampling error estimates

    The sample size yields country-level results with a margin of error of +/-3 percentage points at a 95% confidence level.

Share
FacebookFacebook
TwitterTwitter
Email
Click to copy link
Link copied
Close
Cite
Amit Kumar Sahu (2022). World Population Dataset [Dataset]. https://www.kaggle.com/datasets/asahu40/world-population-dataset
Organization logo

World Population Dataset

Country and Continent Wise World Population Dataset

Explore at:
CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
Dataset updated
Sep 2, 2022
Dataset provided by
Kagglehttp://kaggle.com/
Authors
Amit Kumar Sahu
License

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

Area covered
World
Description

This is a Dataset of the World Population Consisting of Each and Every Country. I have attempted to analyze the same data to bring some insights out of it. The dataset consists of 234 rows and 17 columns. I will analyze the same data and bring the below pieces of information regarding the same.

  1. Continent Population Characteristics Analysis.
  2. Analysis of Countries.
    • Top 10 Most Populated and Least Populated Countries
    • Top 10 Largest and Smallest Countries as per Area
    • Population Growth From 1970 to 2020 (50 Years)
  3. Countries Represent % Of World Population.
    • Countries that represent below 0.1% of the World Population.
    • Countries that represent above 2% of the world Population
    • Top 10 Over Populated Countries based on Density Per Sq KM.
    • Top 10 Least Populated Countries based on Density Per Sq KM.
Search
Clear search
Close search
Google apps
Main menu