Population and Housing Unit Estimates




$CQ(function()
CQ_Analytics.SegmentMgr.loadSegments("/etc/segmentation");
CQ_Analytics.ClientContextUtils.init("/etc/clientcontext/census", "/content/census/en/programsu002Dsurveys/popest/data/tables");


);
























function closeMobileMainNavigation()
$('.mainNavigation').slideUp(400);
$('.belowHeader').toggle(true);
$('body').removeClass('mobileMenu');
$('#mobileTitleRow').removeClass('menuHeader');
window.scrollTo(0, 0);
$('#mobileHeader div').removeClass('headerBlue');
$('#mobileMainMenu').hide();
$('#mobileSearch').hide();
if( $("#hubDetailContainerDiv").length > 0 )
$("#hubDetailContainerDiv").toggle();

if( $("#hubLandingContainerDiv").length > 0 )
$("#hubLandingContainerDiv").toggle();

if( $("#hubListContainerDiv").length > 0 )
$("#hubListContainerDiv").toggle();

//Added for the redesign...
if( $('#featureRotatorRow').css('display') == 'none' )
$('#featureRotatorRow').show();


if( $('#appRotatorRow').css('display') == 'none' )
$('#appRotatorRow').show();


if( $('#homeContentRow').css('display') == 'none' )
$('#homeContentRow').show();


if( $('#leftColumn').css('display') == 'none' )
$('#leftColumn').show();



function toggleMobileMainMenu()
if ($('#mobileSearch').css('display') == 'none'

function toggleMobileSearch()

function toggleMobileMainNavigation()
if ($('.mainNavigation').css('display') == 'none'
&& typeof (closeMobileLeftNavigation) == "function")
closeMobileLeftNavigation();
$('.mainNavigation').slideToggle(400);
$('.belowHeader').toggle();
$('#mobileTitleRow').toggleClass('menuHeader');
$('body').toggleClass('mobileMenu');
$('#mobileHeader div:not(.mobileMenuIcon)').toggleClass('headerBlue');
if( $("#hubDetailContainerDiv").length > 0 )
$("#hubDetailContainerDiv").toggle();

if( $("#hubLandingContainerDiv").length > 0 )
$("#hubLandingContainerDiv").toggle();

if( $("#hubListContainerDiv").length > 0 )
$("#hubListContainerDiv").toggle();

//Added for the redesign...
if( $('#featureRotatorRow').css('display') == 'none' )
$('#featureRotatorRow').show();
else
$('#featureRotatorRow').hide();


if( $('#appRotatorRow').css('display') == 'none' )
$('#appRotatorRow').show();
else
$('#appRotatorRow').hide();


if( $('#homeContentRow').css('display') == 'none' )
$('#homeContentRow').show();
else
$('#homeContentRow').hide();


if( $('#leftColumn').css('display') == 'none' )
$('#leftColumn').show();
else
$('#leftColumn').hide();



$(window).resize(function()
if (Modernizr.mq('only screen and (min-width : 960px)'))
closeMobileMainNavigation();
if (typeof (closeMobileLeftNavigation) == "function")
closeMobileLeftNavigation();

if( $("#hubDetailContainerDiv").length > 0 )
$("#hubDetailContainerDiv").show();

if( $("#hubLandingContainerDiv").length > 0 )
$("#hubLandingContainerDiv").show();

if( $("#hubListContainerDiv").length > 0 )
$("#hubListContainerDiv").show();


);

$(document).ready(function()
$("#mainNavigation .panel-collapse, #mainNavigation2 .panel-collapse").each(function()
var headerId = '#' + $(this).attr('id') + "_h";
var areaId = '#' + $(this).attr('id') + "_a";
$(this).on('hide.bs.collapse', function (event)
$(headerId)
.removeClass("glyphicon-menu-down")
.addClass("glyphicon-menu-right");
$(areaId).css('background-color','#294263');
$(areaId + ' h4').removeClass('blueH4');
$('.mobileCloseButton').removeClass('reverseMobileCloseButton');

if ($(this).hasClass('level2'))
$(this).closest('.level1').removeClass('shadowed');
event.stopPropagation();
);
$(this).on('show.bs.collapse', function (event)
$(headerId)
.removeClass("glyphicon-menu-right")
.addClass("glyphicon-menu-down");
$(areaId).css('background-color', '#FFFFFF');
$(areaId + ' h4').addClass('blueH4');
//Change the close button CSS
if( !$(this).hasClass('level2') )
$('.mobileCloseButton').addClass('reverseMobileCloseButton');



event.stopPropagation();
);
);

$("#btnSearch").click(function()
$("#mobileHeaderSearchForm").submit();
);

);//end document.ready function




















Skip to main navigation
























































function closeDropdown(id)
$(id).slideUp();
$(id+'HeaderItem').removeClass('activeCategory');



function showTab(element)
//element.preventDefault();
//hiding all other tabs
if (!$(element).hasClass("active"))
$(element).tab("show");

$(".subCategoryButton.active,.subCategoryPane.active").removeClass ("active");


function makeLinksAccessible ()
//var accessibleLinks = $("a.accessibleLink");
$("a.accessibleLink").keypress( function (e)
if (e.which == 13)
$(e.target).click();

);
;

$(document).ready( function ()
makeLinksAccessible();
$(".linksDropDown").hover(function()
$(this).addClass('mousedIn');
,function()
var $this = $(this);
$this.removeClass('mousedIn');
var slideUp = setInterval(function()
if (!$this.hasClass('mousedIn'))
closeDropdown('#'+$this.attr('id'));
clearInterval(slideUp);

, 2000);
);

);
































function getBanners()
var urlVal = "/content/census/en/programsu002Dsurveys/popest/data/tables.infobanners.html";
$.ajax(
url: urlVal, dataType: "html",
success: function( result )
$('infoBannerSection').html(result);

,
error: function( err )
span(err);

);

return false;

$(document).ready(function()
getBanners();
$('.info-banner-clickable-div').click(function(e)
var href = $(this).attr('id');
if( typeof(href) !== 'undefined' && !$(e.target).hasClass('data-uscb-exit-btn') && !$(e.target).hasClass('data-uscb-banner-dismiss-btn') )
window.location = href;

return false;
);

$('.uscb-banner-pointer-div').hover(
function(e)
$hoverTargets = $(this).find(".data-uscb-banner-hover-target");
$hoverTargets.addClass("uscb-text-decoration-underline");
$hoverTargets.removeClass("uscb-text-decoration-none");
,
function(e)
$hoverTargets = $(this).find(".data-uscb-banner-hover-target");
$hoverTargets.removeClass("uscb-text-decoration-underline");
$hoverTargets.addClass("uscb-text-decoration-none");

);

$('.data-uscb-banner-dismiss-btn').click(function(e)
if ( $(e.target).hasClass('data-uscb-banner-dismiss-btn') )
var dismissedBannerClass = $(this).attr('id');
var randStr = $(this).attr('id');
var existingCookieValue = getCookie('dismissedBannersClasses');
var newValue = (typeof(existingCookieValue) != 'undefined' && existingCookieValue != '') ? existingCookieValue + '
);

);












Population and Housing Unit Estimates

















$(document).ready(function()
$(document).click(function(event)
if( $(event.target).is('#mobileFacetSelection') )
closeMobileFacetSelection();
else
//span('clicked inside...');

);
);//end document.ready function

function toggleMobileLeftNavigation()
if( $('.leftNavigation').hasClass('no-show') )
$('.leftNavigation').removeClass('no-show');
$('.belowHeader:not(#sectionTitleRow, #listPageContent)').hide();
$('#infoBannerSection').hide();
else
$('.leftNavigation').addClass('no-show');
$('.belowHeader:not(#sectionTitleRow, #listPageContent)').show();
$('#infoBannerSection').show();

$('#sectionTitleRow .leftNavButton').toggleClass('open');
$('#mobileTitleRow').toggleClass('menuHeader');
$('#sectionTitleRow').toggleClass('menuHeader');
var sectionTitleRowHeight = $('#sectionTitleRow').height();
var leftNavPaddingOffset = 150;
if (sectionTitleRowHeight)
leftNavPaddingOffset = sectionTitleRowHeight + 65;

$('#mobileLeftNavigation .menuContent').css('padding-top', sectionTitleRowHeight + 65 + 'px');


function toggleFacetSelection()
if( !$('body').hasClass('menu-slider') )
$('body').addClass('menu-slider');
$('body').addClass('in');
else
$('body').removeClass('menu-slider');
$('body').removeClass('in');



function openMobileFacetSelection()
$('#mobileFacetSelection').css('width', '100%');


function closeMobileFacetSelection()
$('#mobileFacetSelection').css('width', '0%');





























function closeMobileLeftNavigation()
$('.leftNavigation').addClass('no-show');
$('.belowHeader:not(#sectionTitleRow)').toggle(true);
$('#mobileTitleRow').removeClass('menuHeader');
$('#sectionTitleRow').removeClass('menuHeader');
$('#sectionTitleRow .leftNavButton').toggleClass('open');
window.scrollTo(0, 0);


$(document).ready(function()
$('#leftNavigationMenu .panel-collapse, #leftNavigationMenu2 .panel-collapse').each(function()
//span('leftNavigationMenu');
var headerId = '#' + $(this).attr('id') + "_h";
var areaId = '#' + $(this).attr('id') + "_a";
$(this).on('hide.bs.collapse', function (event )
$(headerId)
.removeClass("glyphicon-menu-down")
.addClass("glyphicon-menu-right");
//$(areaId).css('background-color','#0c6291');
if ($(this).hasClass('level2'))
$(this).closest('.level1').removeClass('shadowed');
event.stopPropagation();
);
$(this).on('show.bs.collapse', function (event )
$(headerId)
.removeClass("glyphicon-menu-right")
.addClass("glyphicon-menu-down");
//$(areaId).css('background-color', '#0197c1');
if ($(this).hasClass('level2'))
$(this).closest('.level1').addClass('shadowed');
event.stopPropagation();
);
);

);//end document.ready function























Population and Housing Unit Estimates Tables











The population and housing unit estimates are released on a flow basis throughout each year. Each new series of data (called vintages) incorporates the latest administrative record data, geographic boundaries, and methodology. Therefore, the entire time series of estimates beginning with the most recent decennial census is revised annually, and estimates from different vintages of data may not be consistent across geography and characteristics detail. When multiple vintages of data are available, the most recent vintage is the preferred data.


The vintage year (e.g., V2017) refers to the final year of the time series. The reference date for all estimates is July 1, unless otherwise specified.


Additional estimates files are available in the Datasets section and via the Census Bureau application programming interface (API).


Information on the Population and Housing Unit Estimates Special Tabulation Program is available here.

























2016





2016





  • All


  • 2017


  • 2016


  • 2015


  • 2014


  • 2013


  • 2012


  • 2011


  • 2010


  • 2009


  • 2008


  • 2007


  • 2006


  • 2005


  • 2004


  • 2003


  • 2002


  • 2001


  • 2000


  • 1999


  • 1998


  • 1997


  • 1996


  • 1995


  • 1994


  • 1993


  • 1992


  • 1991


  • 1990


  • 1989


  • 1988


  • 1987


  • 1986


  • 1985


  • 1984


  • 1983


  • 1982


  • 1981


  • 1980


  • 1979


  • 1978


  • 1977


  • 1976


  • 1975


  • 1974


  • 1973


  • 1972


  • 1971


  • 1970


  • 1969


  • 1968


  • 1967


  • 1966


  • 1965


  • 1964


  • 1963


  • 1962


  • 1961


  • 1960


  • 1959


  • 1958


  • 1957


  • 1956


  • 1955


  • 1954


  • 1953


  • 1952


  • 1951


  • 1950


  • 1949


  • 1948


  • 1947


  • 1946


  • 1945


  • 1944


  • 1943


  • 1942


  • 1941


  • 1940


  • 1939


  • 1938


  • 1937


  • 1936


  • 1935


  • 1934


  • 1933


  • 1932


  • 1931


  • 1930


  • 1929


  • 1928


  • 1927


  • 1926


  • 1925


  • 1924


  • 1923


  • 1922


  • 1921


  • 1920


  • 1919


  • 1918


  • 1917


  • 1916


  • 1915


  • 1914


  • 1913


  • 1912


  • 1911


  • 1910


  • 1909


  • 1908


  • 1907


  • 1906


  • 1905


  • 1904


  • 1903


  • 1902


  • 1901


  • 1900




$(document).ready(function()
CensusPageTabs.initPageTabs('list-tab-5E2KZXCA0F5LP29G0Z');
);































TABLE







City and Town Population Totals: 2010-2017




This page features Vintage 2017 population estimates totals.




























TABLE







County Population Totals and Components of Change: 2010-2017




This page features Vintage 2017 population estimates totals.




























TABLE







County Population by Characteristics: 2010-2017




This page features Vintage 2017 population estimates by age, sex, race, and Hispanic origin.




























TABLE







Metropolitan and Micropolitan Statistical Areas Totals: 2010-2017




This page features Vintage 2017 population estimates totals.




























TABLE
|
2017






National Population Totals: 2010-2017




This page features Vintage 2017 population estimates totals and components of change.




























TABLE







National Population by Characteristics: 2010-2017




This page features Vintage 2017 population estimates by age, sex, race, and Hispanic origin.




























TABLE







National, State, and County Housing Unit Totals: 2010-2017




This page features Vintage 2017 housing unit estimates totals.




























TABLE







Puerto Rico Commonwealth Population Characteristics: 2010-2017




This page features Vintage 2017 population estimates by age, sex, race, and Hispanic origin.




























TABLE







Puerto Rico Commonwealth Population Totals: 2010-2017




This page features Vintage 2017 population estimates totals and components of change.




























TABLE







Puerto Rico Municipios Population Totals: 2010-2017




This page features Vintage 2017 population estimates totals.




























TABLE







Puerto Rico Municipios Population by Characteristics: 2010-2017




This page features Vintage 2017 population estimates by age and sex.




























TABLE







State Population Totals: 2010-2017




This page features Vintage 2017 population estimates totals and components of change.




























TABLE







State Population by Characteristics: 2010-2017




This page features Vintage 2017 population estimates by age, sex, race, and Hispanic origin.



























































































window['adrum-start-time'] = new Date().getTime();
(function(config)
config.appKey = 'EUM-AAB-AUN';
config.adrumExtUrlHttp = 'https://www.census.gov/appdynamics/adrum/';
config.adrumExtUrlHttps = 'https://www.census.gov/appdynamics/adrum/';
config.beaconUrlHttp = 'http://eob-appdeum1.csvd.census.gov:7001';
config.beaconUrlHttps = 'https://eob-appdeum1.csvd.census.gov:7002';
config.xd = enable : false;
)(window['adrum-config'] || (window['adrum-config'] = ));
if ('https:' === document.location.protocol)
document.write(unescape('%3Cscript')
+ " src='https://www.census.gov/appdynamics/adrum/adrum.js' "
+ " type='text/javascript' charset='UTF-8'"
+ unescape('%3E%3C/script%3E'));
else
document.write(unescape('%3Cscript')
+ " src='https://www.census.gov/appdynamics/adrum/adrum.js' "
+ " type='text/javascript' charset='UTF-8'"
+ unescape('%3E%3C/script%3E'));


var referrer=document.referrer;
if(referrer.indexOf('search-results.html')>0)
$("body").append("");



By selecting this link you will leave www.census.gov. Please check the Privacy Policy of the site you are visiting.




_satellite.pageBottom();




Popular posts from this blog

大跃进

马相伯