Baselight

New York City Census Data

Demographic, Economic, and Location Data for Census Tracts in NYC

@kaggle.muonneutrino_new_york_city_census_data

Nyc Census Tracts
@kaggle.muonneutrino_new_york_city_census_data.nyc_census_tracts

  • 225.26 KB
  • 2167 rows
  • 36 columns
censustract

CensusTract

county

County

borough

Borough

totalpop

TotalPop

men

Men

women

Women

hispanic

Hispanic

white

White

black

Black

native

Native

asian

Asian

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

36005000100BronxBronx7703713357029.96.160.90.21.664762440373
36005000200BronxBronx54032659274475.82.3164.2363972034139912218022062020.728.717.123.9822.344.813.738.62.943230880.816.22.97.7
36005000400BronxBronx59152896301962.73.630.70.3410074836840727700244913.223.632.223.424.9910.541.31044.61.40.52.145267571.725.32.50.69.5
36005001600BronxBronx58792558332165.11.632.4353632312685917526294526.335.919.136.126.24.913.837.25.345.58.61.61.738.821207521.33.88.7
36005001900BronxBronx25911206138555.49292.1155737936377117986269237.131.535.420.926.26.61119.25.363.932.46.245.4108376.815.57.719.2
36005002000BronxBronx85163301521561.11.631.10.33.3543618086369412023234653.267.714.541.116.77.120.619.6768.24.314625087121.37.717.2
36005002300BronxBronx47742130264462.30.236.5130561447919019781146054.268.320.83633.73.46.15.974.5141.54.142.7119174.216.19.718.9
36005002400BronxBronx1501094152484149365207263.736.310011362.837.2
36005002500BronxBronx53552338301776.51.518.93250917226609711493171450.562.415.936.624.28.614.712.62.862.517.71.82.735.5169185.18.36.10.59.4
36005002701BronxBronx3016137516416831.2145620153522910317157352.664.919.935.925.84.913.5141.764.7181.642.8110286.98.54.515.2

CREATE TABLE nyc_census_tracts (
  "censustract" BIGINT,
  "county" VARCHAR,
  "borough" VARCHAR,
  "totalpop" BIGINT,
  "men" BIGINT,
  "women" BIGINT,
  "hispanic" DOUBLE,
  "white" DOUBLE,
  "black" DOUBLE,
  "native" DOUBLE,
  "asian" DOUBLE,
  "citizen" BIGINT,
  "income" DOUBLE,
  "incomeerr" DOUBLE,
  "incomepercap" DOUBLE,
  "incomepercaperr" DOUBLE,
  "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.