Distribution of Population of each Religion by Caste Categories. Census Data based on Nation Sample Survey and Round Survey 2005
πŸ‘︎ 110
πŸ’¬︎
πŸ‘€︎ u/TallChef__
πŸ“…︎ Dec 01 2021
🚨︎ report
[OC] National Mean Centers of Population, decennial Censuses from 1790 to 2010 and projected for 2020.
πŸ‘︎ 77
πŸ’¬︎
πŸ‘€︎ u/HitchHux
πŸ“…︎ Sep 30 2021
🚨︎ report
I used Python to make a dot density map (with 1 dot per person) for the US Decennial Censuses from 1990 to 2020. This is over a billion points. The result is an amazing way to visualize population and demographic changes over the last 30 years. I wanted to share the code + process I used.

Hey all - I wanted to share a dot density project I worked on recently. I'm hoping the code can be helpful for others and the maps fun to explore.

I've been a huge fan of dot density maps since I saw, many years ago now, the New York Times' and University of Virginia ones for the 2010 census. XKCD has a great one for the 2020 Election. I know it's not always the right visualization choice but for certain types of data, I find it's unmatched in how intuitive it is.

I knew the 2020 Census data was coming out and I thought it could be really cool to make a dot density data set for multiple census years as a way to visualize city and neighborhood changes over time. Here's the final dashboard.

I used Python, Pandas, Geopandas, and Shapely to take the census blockgroup polygons and population counts and generate the points. The notebooks can be found here:

1990 - https://colab.research.google.com/drive/19vkf2VdionnCnm7mA3EmFuQIloNi_n4Y

2000 / 2010 - https://colab.research.google.com/drive/1FoFnvCRcn4mfNhGSPuf4OUerT1-n_xfP?usp=sharing#scrollTo=ZCXbx907hqjJ

2020 - https://colab.research.google.com/drive/17Dhzi_070Xnvs8cyMdmyvSBeB64OOr6U?authuser=1#scrollTo=b8HTHVkh8lJS

The core functions for the points creation comes from Andrew Guidus' post Visualizing Population Distributions with Dot Density Maps.

seed = 10
s=RandomState(seed) if seed else RandomState(seed)
def gen_random_points_poly(poly, num_points):
"""
Returns a list of N randomly generated points within a polygon.
"""

min_x, min_y, max_x, max_y = poly.bounds
points = []
i=0
while len(points) < num_points:
random_point = Point([s.uniform(min_x, max_x), s.uniform(min_y, max_y)])
if random_point.within(poly):
points.append(random_point)
i+=1
return points
def gen_points_in_gdf_polys(geometry, values, points_per_value = None):
"""
`Take a GeoSeries of Polygons along with a Series of valu

... keep reading on reddit ➑

πŸ‘︎ 293
πŸ’¬︎
πŸ‘€︎ u/kyledevyay
πŸ“…︎ Jan 07 2022
🚨︎ report
At 17.5 million, Indian diaspora largest in the world, says UN report The estimates are based on official national statistics on the foreign-born or the foreign population obtained from population censuses, population registers or nationally representative surveys. financialexpress.com/indi…
πŸ‘︎ 43
πŸ’¬︎
πŸ‘€︎ u/Orwellisright
πŸ“…︎ Sep 18 2019
🚨︎ report
This guy used Python to make a dot density map (with 1 dot per person) for the US Decennial Censuses from 1990 to 2020. This is over a billion points. The result is an amazing way to visualize population and demographic changes over the last 30 years. /r/Python/comments/rykx3w…
πŸ‘︎ 6
πŸ’¬︎
πŸ‘€︎ u/Most-Analyst-5878
πŸ“…︎ Jan 08 2022
🚨︎ report
How significant is Chinas population problem really? Is there any credibility to the claims that Chinas National Bureau of Statistics have inflated population numbers in its national censuses, what are the ramifications?

In recent months there has been an increasing coverage in media about Chinas aging population, as the 7th national population census which is a census that the national bureau of statistics of China publishes every 10th year. Traditionally, this census has been published in April but this year that hasn't been the case, many analysts argue this has been an attempt to hide that Chinas population indeed has shrunk much earlier than previous forecasts, which generally has aimed at between 2025 and 2030.

Recently I've come across a source that I do think have a lot of credibility to its claim that the public data in China is skewed.

China Insights, is a YouTube channel which has produced some extremely in-depth analysis on China. Personally, I do think the author have done an incredible job presenting Chinas demographics problem in an informative and objective manner.

The videos I refer to is a 3 video series with an accumulative length of about ~20 minutes.

Part 1
Part 2
Part 3

The videos covers a variety of subjects such as potential economic fallout from exposure to actual data versus published data. He also includes various numbers that seemingly has changed over time or that suggests the population has suffered very few deaths in certain periods, in order to make the data add up.

What is your thoughts on my question, and do you agree with the author on these issues?

The reason I'm asking this is to hear to hear some thoughts in general, I'm well read on Chinese demographics and could probably draw a pretty good sketch of it's population pyramid by memory. However, I do not know whether claims that the national data is indeed skewed holds up, any insight is appreciated!

πŸ‘︎ 321
πŸ’¬︎
πŸ‘€︎ u/legendarygael1
πŸ“…︎ May 27 2021
🚨︎ report
Differences between the population estimates and Census counts can be due to several things: input data used in making the estimates, the method of producing the estimates, and/or an under/over count in the 2010 or 2020 Censuses. U.S. Census Bureau Tweeted 14May21
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/QueeLinx
πŸ“…︎ May 16 2021
🚨︎ report
First-Ever Census Bureau Report Highlights Growing Childless Older Adult Population AUGUST 31, 2021 RELEASE NUMBER CB21-TPS.99 "uses data from the 2018 Survey of Income and Program Participation (SIPP)" census.gov/newsroom/press…
πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/QueeLinx
πŸ“…︎ Aug 31 2021
🚨︎ report
President’s FY 2022 Budget Request "Requests $1.4 billion for the Department of Commerce, an increase of $582 million over FY 2021, for collecting, compiling, analyzing, preparing and publishing statistics for censuses and survey programs provided for by law." ncsl.org/ncsl-in-dc/publi…
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/QueeLinx
πŸ“…︎ Jun 10 2021
🚨︎ report
Conducting population and housing censuses during the pandemic: An overview content.iospress.com/arti…
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/QueeLinx
πŸ“…︎ Sep 24 2021
🚨︎ report
There are about 2.5 crores Bangladeshi illegal immigrants 90% of them Muslims. By declaring them illegal BJP has reduced muslim population by about 8-9 crore in the future censuses like in 2041,2051 which is a huge thing considering the decreasing of Hindu and Sikh population.

in 2011 census Hindus were 78%. Also by adding Hindus from Bangladesh Hindus may again reach 80% mark ,i hope,in 2050. Or am I being too optimistic? What do you guys think?

πŸ‘︎ 40
πŸ’¬︎
πŸ‘€︎ u/dhaklal
πŸ“…︎ Jan 31 2020
🚨︎ report
Population censuses; are statistical dinosaurs able to adapt? The third discussion on the SJIAOS discussion platform focuses on Population and Housing Censuses ... around 4 themes; about the definition of a census, its methodology, the relevance of census taking and the census technology. officialstatistics.com/ne…
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/QueeLinx
πŸ“…︎ Nov 05 2020
🚨︎ report
Scant data is available about the dietary habits of expectant and new mothers and their infants in the Native Hawaiian community. When many different populations and cultures are lumped together by surveys and the census into the β€œother” category, it is impossible to tease out anything of value. hawaii.edu/news/2021/03/3…
πŸ‘︎ 7
πŸ’¬︎
πŸ‘€︎ u/honolulu_oahu_mod
πŸ“…︎ Mar 31 2021
🚨︎ report
Scant data is available about the dietary habits of expectant and new mothers and their infants in the Native Hawaiian community. When many different populations and cultures are lumped together by surveys and the census into the β€œother” category, it is impossible to tease out anything of value. hawaii.edu/news/2021/03/3…
πŸ‘︎ 4
πŸ’¬︎
πŸ‘€︎ u/honolulu_oahu_mod
πŸ“…︎ Mar 31 2021
🚨︎ report
Final Consolidated Appropriations Act, 2021. $818,241,000 for Periodic Censuses and Programs. $3,556,000 shall be transferred to the β€˜β€˜Office of Inspector General’’

Story headlined [National] - Congress releases 5,593-page COVID-19 stimulus bill hours before holding votes | NY Post gave me a link to the final bill.

https://rules.house.gov/sites/democrats.rules.house.gov/files/BILLS-116HR133SA-RCP-116-68.pdf

Don't know why the last page is numbered 3105.

Draft FY21 CJS Senate Appropriations Bill. $1,514,709,000 for Periodic Censuses and Programs. $3,556,000 shall be transferred to the β€˜β€˜Office of Inspector General’’

I guess lobbyists at The Census Project and Big Data lobbyist, Howard Fienberg, Insights Association, wrote the Census Bureau funding language.

Short-Term Continuing Resolution Gives Another Week to Fund the Census Bureau for FY 2021

Sixth District Congressman Mark Walker (R-NC) stated

>Certainly no one could read a thousand page bill in the few hours members of Congress were allowed, but the idea of reading and voting on a 5,593 page bill in an afternoon means none of those who voted for or against it, knew what was in the bill.

https://www.rhinotimes.com/news/walker-not-supportive-of-massive-last-minute-spending-bill/

Whether they realized it or not, a handful of Democrats voted against funding the Trump administration's disreputable Census. Fox News reported:

>The Democrats who voted against the first package spending represented a wide cross-section of the party, including freshman and veteran lawmakers, moderates and progressives. Among them were Reps. Alexandria Ocasio-Cortez, D-N.Y.; Ilhan Omar, D-Minn,; Ayanna Pressley, D-Mass.; Pramila Jayapal, D-Wash.; Cindy Axne, D-Iowa; Kendra Horn, D-Okla.; Ro Khanna, D-Calif; Barbara Lee, D-Calif.; Carolyn Maloney, D-N.Y.; and Hakeem Jeffries, D-N.Y.

along with "Reps. Tulsi Gabbard, D-Hawaii, and Rashida Tlaib, D-Mich."

[Why the House split the coronavirus and omnibus package into two votes, and what it may mean for next Congress](https://www.reddit.com/r/TrendingQuickTVnews/comments/ki587x/why_the_house_split_the_coronavirus_and_omnibus/?utm_source=share&utm_medium=web2x&context

... keep reading on reddit ➑

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/QueeLinx
πŸ“…︎ Dec 22 2020
🚨︎ report
The balance between governance support needed and influence avoided: The case of population censuses. by Jean-Michel Durr. Statistical Journal of the IAOS, vol. 36, no. 1, pp. 211-215, 2020 content.iospress.com/arti…
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/QueeLinx
πŸ“…︎ Apr 13 2020
🚨︎ report
Guest Editorial by Jean-Michel Durr. Special edition of the Journal of the International Association of Official Statistics on β€œPopulation and Housing Censuses”. content.iospress.com/arti…
πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/QueeLinx
πŸ“…︎ Apr 07 2020
🚨︎ report
The 2020 round of population and housing censuses: An overview. Research Article by Srdjan MrkiΔ‡. Statistical Journal of the IAOS, vol. 36, no. 1, pp. 35-42, 2020 content.iospress.com/arti…
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/QueeLinx
πŸ“…︎ Apr 08 2020
🚨︎ report
% of the population that is of European descent (Source: Most recent national censuses and Eurostat)
πŸ‘︎ 6
πŸ’¬︎
πŸ‘€︎ u/BlindKarasu
πŸ“…︎ Jun 11 2019
🚨︎ report
The current population survey 153.1 registered voters eligible to vote in the 2018 mid-term elections: 71.7 million men and 81.3 million women. Voting and Registration - Census Bureau 'and irregular extra votes. I wonder how all of this is possible? Perhaps a fraudulent.
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/Jovana_Vana_Anic
πŸ“…︎ Dec 30 2020
🚨︎ report
Top Mind of /r/conspiracy blames the Jews for supposedly genociding Germany during WWII: "Why is that according to population censuses before and after WW2, the number of Jews in Europe increased, while nearly 15 million German men, women and children perished? Who really was exterminated here?" np.reddit.com/r/conspirac…
πŸ‘︎ 91
πŸ’¬︎
πŸ‘€︎ u/generallyaware
πŸ“…︎ May 29 2018
🚨︎ report
This notice announces the voting age population estimates as of July 1, 2020, for each state and the District of Columbia. Office of the Secretary, Commerce 06May21 Census State Data Centers Tweeted via @FedRegister federalregister.gov/docum…
πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/QueeLinx
πŸ“…︎ May 07 2021
🚨︎ report
The growth of Indian Americans, in public office and industry. In absolute numbers, the population of Indian Americans has grown ten-fold between 1980, the first US Census to count Indians as a distinct ethnicity, and 2010 indianexpress.com/article…
πŸ‘︎ 39
πŸ’¬︎
πŸ‘€︎ u/oar_xf
πŸ“…︎ Aug 17 2020
🚨︎ report
[OC] Age and Sex of the Population of Canada, Provinces and Territories, Census Metropolitan Areas and Census Agglomerations, 2016 and 2011 Censuses
πŸ‘︎ 18
πŸ’¬︎
πŸ‘€︎ u/JaththeGod
πŸ“…︎ Mar 25 2018
🚨︎ report
Census of the Algerian population between 1833 and 1856 according to wacky estimates of French officers; We notice a fall in the Algerian population reddit.com/gallery/or5hou
πŸ‘︎ 13
πŸ’¬︎
πŸ‘€︎ u/DiveintoSymbols
πŸ“…︎ Jul 25 2021
🚨︎ report
Estimates of April 1 population by age, sex, race and Hispanic origin. State of Washington Office of Financial Management (Not 2020 Census data!) Census State Data Centers Retweeted OFM ofm.wa.gov/washington-dat…
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/QueeLinx
πŸ“…︎ Feb 05 2021
🚨︎ report
Draft FY21 CJS Senate Appropriations Bill. $1,514,709,000 for Periodic Censuses and Programs. $3,556,000 shall be transferred to the β€˜β€˜Office of Inspector General’’ appropriations.senate.gov…
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/QueeLinx
πŸ“…︎ Nov 11 2020
🚨︎ report
"The Secretary of the Department of Commerce renewed and filed the charter for the National Advisory Committee on Racial, Ethnic and Other Populations (NAC)." The NAC advises the Census Bureau Director on variables affecting Census Bureau programs and surveys, including the decennial census. federalregister.gov/docum…
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/QueeLinx
πŸ“…︎ May 01 2020
🚨︎ report
Census of the Algerian population between 1833 and 1856 according to wacky estimates of French officers; We notice a fall in the Algerian population reddit.com/gallery/or5hou
πŸ‘︎ 5
πŸ’¬︎
πŸ‘€︎ u/DiveintoSymbols
πŸ“…︎ Jul 25 2021
🚨︎ report
I made a dot density map (with 1 dot per person) for the US Decennial Censuses from 1990 to 2020. The result is an amazing way to visualize population and demographic changes over the last 30 years. I wanted to share the code + process I used.

Hey all - I wanted to share a dot density project I worked on recently. I'm hoping the code can be helpful for others and the maps fun to explore.

I've been a huge fan of dot density maps since I saw, many years ago now, the New York Times' and University of Virginia ones for the 2010 census. XKCD has a great one for the 2020 Election. I know it's not always the right visualization choice but for certain types of data, I find it's unmatched in how intuitive it is.

I knew the 2020 Census data was coming out and I thought it could be really cool to make a dot density data set for multiple census years as a way to visualize city and neighborhood changes over time. Here's the final dashboard.

Here's how Oakland (where I live) has changed over time.

https://reddit.com/link/ryhnw4/video/fdzwrc1ruba81/player

Here's San Francisco:

https://reddit.com/link/ryhnw4/video/56x7rh1wuba81/player

Here's Austin

https://reddit.com/link/ryhnw4/video/oef4e571vba81/player

I used Python, Pandas, Geopandas, and Shapely to take the census blockgroup polygons and population counts and generate the points. The notebooks can be found here:

1990 - https://colab.research.google.com/drive/19vkf2VdionnCnm7mA3EmFuQIloNi_n4Y
2000 / 2010 - https://colab.research.google.com/drive/1FoFnvCRcn4mfNhGSPuf4OUerT1-n_xfP?usp=sharing#scrollTo=ZCXbx907hqjJ
2020 - https://colab.research.google.com/drive/17Dhzi_070Xnvs8cyMdmyvSBeB64OOr6U?authuser=1#scrollTo=b8HTHVkh8lJS

The core functions for the points creation comes from Andrew Guidus' post Visualizing Population Distributions with Dot Density Maps.

seed = 10
s=RandomState(seed) if seed else RandomState(seed)
def gen_random_points_poly(poly, num_points):
"""
Returns a list of N randomly generated points within a polygon.
"""

min_x, min_y, max_x, max_y = poly.bounds
points = []
i=0
while len(points) < num_points:
`random_point = Point([s.uniform(min_x,

... keep reading on reddit ➑

πŸ‘︎ 91
πŸ’¬︎
πŸ‘€︎ u/kyledevyay
πŸ“…︎ Jan 07 2022
🚨︎ report
I made a dot density map (with 1 dot per person) for the US Decennial Censuses from 1990 to 2020. The result is an amazing way to visualize population and demographic changes over the last 30 years. I wanted to share the code + process I used.

Hey all - I wanted to share a dot density project I worked on recently. I'm hoping the code can be helpful for others and the maps fun to explore.

I've been a huge fan of dot density maps since I saw, many years ago now, the New York Times' and University of Virginia ones for the 2010 census. XKCD has a great one for the 2020 Election. I know it's not always the right visualization choice but for certain types of data, I find it's unmatched in how intuitive it is.

I knew the 2020 Census data was coming out and I thought it could be really cool to make a dot density data set for multiple census years as a way to visualize city and neighborhood changes over time. Here's the final dashboard.

I used Python, Pandas, Geopandas, and Shapely to take the census blockgroup polygons and population counts and generate the points. The notebooks can be found here:

1990 - https://colab.research.google.com/drive/19vkf2VdionnCnm7mA3EmFuQIloNi_n4Y

2000 / 2010 - https://colab.research.google.com/drive/1FoFnvCRcn4mfNhGSPuf4OUerT1-n_xfP?usp=sharing#scrollTo=ZCXbx907hqjJ

2020 - https://colab.research.google.com/drive/17Dhzi_070Xnvs8cyMdmyvSBeB64OOr6U?authuser=1#scrollTo=b8HTHVkh8lJS

The core functions for the points creation comes from Andrew Guidus' post Visualizing Population Distributions with Dot Density Maps.

seed = 10
s=RandomState(seed) if seed else RandomState(seed)
def gen_random_points_poly(poly, num_points):
"""
Returns a list of N randomly generated points within a polygon.
"""

min_x, min_y, max_x, max_y = poly.bounds
points = []
i=0
while len(points) < num_points:
random_point = Point([s.uniform(min_x, max_x), s.uniform(min_y, max_y)])
if random_point.within(poly):
points.append(random_point)
i+=1
return points
def gen_points_in_gdf_polys(geometry, values, points_per_value = None):
"""
`Take a GeoSeries of Polygons along with a Series of value

... keep reading on reddit ➑

πŸ‘︎ 47
πŸ’¬︎
πŸ‘€︎ u/kyledevyay
πŸ“…︎ Jan 07 2022
🚨︎ report
I made a dot density map (with 1 dot per person) for the US Decennial Censuses from 1990 to 2020. The result is an amazing way to visualize population and demographic changes over the last 30 years. I wanted to share the code + process I used.

Hey all - I wanted to share a dot density project I worked on recently. I'm hoping the code can be helpful for others and the maps fun to explore.

I've been a huge fan of dot density maps since I saw, many years ago now, the New York Times' and University of Virginia ones for the 2010 census. XKCD has a great one for the 2020 Election. I know it's not always the right visualization choice but for certain types of data, I find it's unmatched in how intuitive it is.

I knew the 2020 Census data was coming out and I thought it could be really cool to make a dot density data set for multiple census years as a way to visualize city and neighborhood changes over time. Here's the final dashboard.

Here's what Oakland looks like

https://reddit.com/link/rykvfj/video/swsge6i6lca81/player

Here's Austin:

https://reddit.com/link/rykvfj/video/g2axeyy9lca81/player

I used Python, Pandas, Geopandas, and Shapely to take the census blockgroup polygons and population counts and generate the points. The notebooks can be found here:

1990 - https://colab.research.google.com/drive/19vkf2VdionnCnm7mA3EmFuQIloNi_n4Y

2000 / 2010 - https://colab.research.google.com/drive/1FoFnvCRcn4mfNhGSPuf4OUerT1-n_xfP?usp=sharing#scrollTo=ZCXbx907hqjJ

2020 - https://colab.research.google.com/drive/17Dhzi_070Xnvs8cyMdmyvSBeB64OOr6U?authuser=1#scrollTo=b8HTHVkh8lJS

The core functions for the points creation comes from Andrew Guidus' post Visualizing Population Distributions with Dot Density Maps.

seed = 10
s=RandomState(seed) if seed else RandomState(seed)
def gen_random_points_poly(poly, num_points):
"""
Returns a list of N randomly generated points within a polygon.
"""

min_x, min_y, max_x, max_y = poly.bounds
points = []
i=0
while len(points) < num_points:
random_point = Point([s.uniform(min_x, max_x), s.uniform(min_y, max_y)])
if random_point.within(poly):
points.append(random_point)
`i+=

... keep reading on reddit ➑

πŸ‘︎ 19
πŸ’¬︎
πŸ‘€︎ u/kyledevyay
πŸ“…︎ Jan 07 2022
🚨︎ report

Please note that this site uses cookies to personalise content and adverts, to provide social media features, and to analyse web traffic. Click here for more information.