Baselight

NYC Property Valuation And Assessment Data

From NYC Open Data (Department of Finance)

@kaggle.akuppps_nyc_property_valuation_and_assessment_data

Loading...
Loading...

About this Dataset

NYC Property Valuation And Assessment Data

I found this dataset on NYC's Open Data website. NYC does a very good job of tracking their data. This data shows as of June 30, 2021 all the valuations of all the properties in NYC. There are 9.85 million rows! This is a wonderful dataset to exercise data exploration at a large scale and practice using data management tools like pandas!

Inside you will find specific information of each property such as property type, the borough it is in, and if it is privately or publicly owned. You can see the monetary values set forth by NYC's Department of Finance for the properties. You can answer questions such as: What is the total sum of all the property values in Manhattan?

All the credit for this dataset goes to NYC's Open Data website.
Link can be found here: https://data.cityofnewyork.us/City-Government/Property-Valuation-and-Assessment-Data/yjxr-fw8i

How will each borough in NYC grow or shrink in prices? What will the prices be in the future? What are the most expensive properties? What is the standard deviation for prices per borough? What is the correlation between property tax class and price of property? The list of questions can go on and on!

Tables

Nyc Property Valuation Data Narrowed Down

@kaggle.akuppps_nyc_property_valuation_and_assessment_data.nyc_property_valuation_data_narrowed_down
  • 120.6 MB
  • 9845857 rows
  • 8 columns
Loading...

CREATE TABLE nyc_property_valuation_data_narrowed_down (
  "unnamed_0" BIGINT,
  "lot" BIGINT,
  "bldgcl" VARCHAR,
  "taxclass" VARCHAR,
  "ltfront" BIGINT,
  "ltdepth" BIGINT,
  "fullval" BIGINT,
  "postcode" DOUBLE
);

Share link

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