Baselight

US Census Demographic Data

Demographic and Economic Data for Tracts and Counties

@kaggle.muonneutrino_us_census_demographic_data

Acs2015 County Data
@kaggle.muonneutrino_us_census_demographic_data.acs2015_county_data

  • 323.69 KB
  • 3220 rows
  • 37 columns
censusid

CensusId

state

State

county

County

totalpop

TotalPop

men

Men

women

Women

hispanic

Hispanic

white

White

black

Black

native

Native

asian

Asian

pacific

Pacific

citizen

Citizen

income

Income

incomeerr

IncomeErr

incomepercap

IncomePerCap

incomepercaperr

IncomePerCapErr

poverty

Poverty

childpoverty

ChildPoverty

professional

Professional

service

Service

office

Office

construction

Construction

production

Production

drive

Drive

carpool

Carpool

transit

Transit

walk

Walk

othertransp

OtherTransp

workathome

WorkAtHome

meancommute

MeanCommute

employed

Employed

privatework

PrivateWork

publicwork

PublicWork

selfemployed

SelfEmployed

familywork

FamilyWork

unemployment

Unemployment

1001AlabamaAutauga5522126745284762.675.818.50.414072551281239124974108012.918.633.21724.28.617.187.58.80.10.51.31.826.52398673.620.95.57.6
1003AlabamaBaldwin19512195314998074.583.19.50.60.71476955025412632731771113.419.233.117.727.110.811.284.78.80.111.43.926.48595381.512.35.80.47.5
1005AlabamaBarbour2693214497124354.646.246.70.20.4207143296429731682479826.745.326.816.123.110.823.183.810.90.41.81.51.624.1859771.820.87.30.117.6
1007AlabamaBibb2260412073105312.274.521.40.40.11749538678399518431161816.827.921.517.917.81923.783.213.50.50.61.50.728.8829476.816.16.70.48.3
1009AlabamaBlount5771028512291988.687.91.50.30.1423454581331412053270816.727.228.514.123.913.519.984.911.20.40.90.42.334.9221898213.54.20.47.7
1011AlabamaBullock10678566050184.422.270.71.20.2805731938588417580205524.638.418.81519.720.126.474.914.90.751.72.827.5386579.515.15.418
1013AlabamaButler203549502108521.253.343.80.10.4155813222917931839071425.439.227.516.621.910.323.784.512.40.80.61.724.6781377.416.26.20.210.9
1015AlabamaCalhoun11664856274603743.57320.30.20.988612417039252137448920.531.627.317.724.210.520.485.39.40.21.21.22.724.14740174.120.850.112.3
1017AlabamaChambers3407916258178210.457.340.30.20.82646234177294921071136621.637.223.314.526.311.524.485.111.90.20.30.42.125.11368985.112.12.88.9
1019AlabamaCherokee2600812975130331.591.74.80.60.32060036296171021811155619.230.129.31619.513.721.583.912.10.20.60.72.527.41015573.118.57.90.57.9

CREATE TABLE acs2015_county_data (
  "censusid" BIGINT,
  "state" VARCHAR,
  "county" VARCHAR,
  "totalpop" BIGINT,
  "men" BIGINT,
  "women" BIGINT,
  "hispanic" DOUBLE,
  "white" DOUBLE,
  "black" DOUBLE,
  "native" DOUBLE,
  "asian" DOUBLE,
  "pacific" DOUBLE,
  "citizen" BIGINT,
  "income" DOUBLE,
  "incomeerr" DOUBLE,
  "incomepercap" BIGINT,
  "incomepercaperr" BIGINT,
  "poverty" DOUBLE,
  "childpoverty" DOUBLE,
  "professional" DOUBLE,
  "service" DOUBLE,
  "office" DOUBLE,
  "construction" DOUBLE,
  "production" DOUBLE,
  "drive" DOUBLE,
  "carpool" DOUBLE,
  "transit" DOUBLE,
  "walk" DOUBLE,
  "othertransp" DOUBLE,
  "workathome" DOUBLE,
  "meancommute" DOUBLE,
  "employed" BIGINT,
  "privatework" DOUBLE,
  "publicwork" DOUBLE,
  "selfemployed" DOUBLE,
  "familywork" DOUBLE,
  "unemployment" DOUBLE
);

Share link

Anyone who has the link will be able to view this.