misikoff commited on
Commit
4740530
1 Parent(s): 96047e1

feat: update readme order, types and classes

Browse files
Files changed (1) hide show
  1. README.md +150 -76
README.md CHANGED
@@ -432,14 +432,78 @@ Updated 2023-02-01
432
  This dataset contains several configs produced based on files available at https://www.zillow.com/research/data/.
433
 
434
  Supported configs:
435
- <!-- list each with a short description (1 sentence) -->
 
436
  - [`home_values`](#home-values): Zillow Home Value Index (ZHVI) for all homes, mid-tier, bottom-tier, and top-tier homes.
437
  - [`home_values_forecasts`](#home-values-forecasts): Zillow Home Value Forecast (ZHVF) for all homes, mid-tier, bottom-tier, and top-tier homes.
 
438
  - [`rentals`](#rentals): Zillow Observed Rent Index (ZORI) for all homes, mid-tier, bottom-tier, and top-tier homes.
439
- - [`for_sale_listings`](#for-sale-listings): Median listing price, new listings, and new pending listings.
440
  - [`sales`](#sales): Median sale price, median sale price per square foot, and sales count.
441
- - [`days_on_market`](#days-on-market): Days to pending, days to close, share of listings with a price cut, and price cuts.
442
- - [`new_construction`](#new-construction): Median sale price, median sale price per square foot, and sales count.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
443
 
444
  ## HOME VALUES
445
 
@@ -457,10 +521,28 @@ Base Columns
457
  - `Region ID`: dtype="string", a unique identifier for the region
458
  - `Size Rank`: dtype="int32", a rank of the region's size
459
  - `Region`: dtype="string", the name of the region
460
- - `Region Type`: dtype="string", the type of region
 
 
 
 
 
 
461
  - `State`: dtype="string", the US state abbreviation for the state containing the region
462
- - `Home Type`: dtype="string", the type of home
463
- - `Date`: dtype="string", the date of the last day of the month for this data
 
 
 
 
 
 
 
 
 
 
 
 
464
 
465
  Value Columns
466
  - `Mid Tier ZHVI (Smoothed) (Seasonally Adjusted)`: dtype="float32",
@@ -480,13 +562,18 @@ Base Columns
480
  - `Region ID`: dtype="string", a unique identifier for the region
481
  - `Size Rank`: dtype="int32", a rank of the region's size
482
  - `Region`: dtype="string", the name of the region
483
- - `Region Type`: dtype="string", the type of region
 
 
 
 
 
484
  - `State`: dtype="string", the US state abbreviation for the state containing the region
485
- - `City`: dtype="string", id="City"),
486
- - `Metro`: dtype="string", id="Metro"),
487
- - `County`: dtype="string", id="County"),
488
  - `Home Type`: dtype="string", the type of home
489
- - `Date`: dtype="string", the date of these forecasts
490
 
491
  Value Columns
492
  - `Month Over Month % (Smoothed)`: dtype="float32",
@@ -496,40 +583,56 @@ Value Columns
496
  - `Quarter Over Quarter % (Raw)`: dtype="float32"
497
  - `Year Over Year % (Raw)`: dtype="float32"
498
 
499
- ## RENTALS
500
 
501
  Base Columns
502
  - `Region ID`: dtype="string", a unique identifier for the region
503
  - `Size Rank`: dtype="int32", a rank of the region's size
504
  - `Region`: dtype="string", the name of the region
505
- - `Region Type`: dtype="string", the type of region
 
 
 
 
 
506
  - `State`: dtype="string", the US state abbreviation for the state containing the region
507
- - `Home Type`: dtype="string", the type of home
508
- - `Date`: dtype="string", the date of the last day of the month for this data
509
-
 
 
 
 
 
510
  Value Columns
511
- - `Rent (Smoothed)`: dtype="float32", Zillow Observed Rent Index (ZORI): A smoothed measure of the typical observed market rate rent across a given region. ZORI is a repeat-rent index that is weighted to the rental housing stock to ensure representativeness across the entire market, not just those homes currently listed for-rent. The index is dollar-denominated by computing the mean of listed rents that fall into the 40th to 60th percentile range for all homes and apartments in a given region, which is weighted to reflect the rental housing stock.
512
- - `Rent (Smoothed) (Seasonally Adjusted)`: dtype="float32", Zillow Observed Rent Index (ZORI) :A smoothed measure of the typical observed market rate rent across a given region. ZORI is a repeat-rent index that is weighted to the rental housing stock to ensure representativeness across the entire market, not just those homes currently listed for-rent. The index is dollar-denominated by computing the mean of listed rents that fall into the 40th to 60th percentile range for all homes and apartments in a given region, which is weighted to reflect the rental housing stock.
 
513
 
514
- ## FOR-SALE LISTINGS
515
 
516
  Base Columns
517
  - `Region ID`: dtype="string", a unique identifier for the region
518
  - `Size Rank`: dtype="int32", a rank of the region's size
519
  - `Region`: dtype="string", the name of the region
520
- - `Region Type`: dtype="string", the type of region
 
 
 
 
 
521
  - `State`: dtype="string", the US state abbreviation for the state containing the region
522
  - `Home Type`: dtype="string", the type of home
523
- - `Date`: dtype="string", the date of the last day of the month for this data
524
-
525
- Value Columns
526
- - `Median Listing Price`: dtype="float32", The median price at which homes across various geographies were listed.
527
- - `Median Listing Price (Smoothed)`: dtype="float32", The median price at which homes across various geographies were listed. (smoothed)
528
- - `New Listings`: dtype="int32", how many new listings have come on the market in a given month
529
- - `New Listings (Smoothed)`: dtype="int32", how many new listings have come on the market in a given month. (smoothed)
530
- - `New Pending (Smoothed)`: dtype="int32", The count of listings that changed from for-sale to pending status on Zillow.com in a given time period. (smoothed)
531
- - `New Pending`: dtype="int32", The count of listings that changed from for-sale to pending status on Zillow.com in a given time period.
532
 
 
 
 
533
 
534
  ## SALES (TODO investigate columns)
535
  <!-- Sale-to-List Ratio (mean/median): Ratio of sale vs. final list price. -->
@@ -539,61 +642,32 @@ Base Columns
539
  - `Region ID`: dtype="string", a unique identifier for the region
540
  - `Size Rank`: dtype="int32", a rank of the region's size
541
  - `Region`: dtype="string", the name of the region
542
- - `Region Type`: dtype="string", the type of region
 
 
 
 
 
543
  - `State`: dtype="string", the US state abbreviation for the state containing the region
544
- - `Home Type`: dtype="string", the type of home
545
- - `Date`: dtype="string", the date of the last day of the month for this data
 
 
 
 
 
546
 
547
  Value Columns
548
  - `Median Sale Price`: dtype="float32", The median price at which homes across various geographies were sold.
549
  - `Median Sale Price per Sqft`: dtype="float32" The median price per square foot at which homes across various geographies were sold.
550
  - `Sales Count`: dtype="int32", The "Sales Count Nowcast" is the estimated number of unique properties that sold during the month after accounting for the latency between when sales occur and when they are reported.
551
 
552
- ## DAYS ON MARKET AND PRICE CUTS (TODO investigate columns more)
553
-
554
- Days to Pending: How long it takes homes in a region to change to pending status on Zillow.com after first being shown as for sale. The reported figure indicates the number of days (mean or median) that it took for homes that went pending during the week being reported, to go pending. This differs from the old “Days on Zillow” metric in that it excludes the in-contract period before a home sells.
555
- Days to Close (mean/median): Number of days between the listing going pending and the sale date.
556
- Share of Listings With a Price Cut: The number of unique properties with a list price at the end of the month that’s less than the list price at the beginning of the month, divided by the number of unique properties with an active listing at some point during the month.
557
- Price Cuts: The mean and median price cut for listings in a given region during a given time period, expressed as both dollars ($) and as a percentage (%) of list price.
558
-
559
- Base Columns
560
- - `Region ID`: dtype="string", a unique identifier for the region
561
- - `Size Rank`: dtype="int32", a rank of the region's size
562
- - `Region`: dtype="string", the name of the region
563
- - `Region Type`: dtype="string", the type of region
564
- - `State`: dtype="string", the US state abbreviation for the state containing the region
565
- - `Home Type`: dtype="string", the type of home
566
- - `Date`: dtype="string", the date of the last day of the week for this data
567
-
568
- Value Columns
569
- - `Mean Listings Price Cut Amount (Smoothed)`: dtype="float32"
570
- - `Percent Listings Price Cut`: dtype="float32", The number of unique properties with a list price at the end of the month that’s less than the list price at the beginning of the month, divided by the number of unique properties with an active listing at some point during the month.
571
- - `Mean Listings Price Cut Amount`: dtype="float32"
572
- - `Percent Listings Price Cut (Smoothed)`: dtype="float32"
573
- - `Median Days on Pending (Smoothed)`: dtype="float32", median number of days it takes for homes in a region to change to pending status on Zillow.com after first being shown as for sale. (smoothed)
574
- - `Median Days on Pending`: dtype="float32", median number of days it takes for homes in a region to change to pending status on Zillow.com after first being shown as for sale.
575
-
576
- ## NEW CONSTRUCTION
577
-
578
- Base Columns
579
- - `Region ID`: dtype="string", a unique identifier for the region
580
- - `Size Rank`: dtype="int32", a rank of the region's size
581
- - `Region`: dtype="string", the name of the region
582
- - `Region Type`: dtype="string", the type of region
583
- - `State`: dtype="string", the US state abbreviation for the state containing the region
584
- - `Home Type`: dtype="string", the type of home
585
- - `Date`: dtype="string", the date of the last day of the month for this data
586
-
587
- Value Columns
588
- - `Median Sale Price`: dtype="float32", the median sale price of new construction homes that sold during the month in the specified region
589
- - `Median Sale Price per Sqft`: dtype="float32", the median sale price per square foot of new construction homes that sold during the month in the specified region
590
- - `Sales Count`: dtype="int32", the number of new construction homes that sold during the month in the specified region
591
-
592
  ## DEFINITIONS OF HOME TYPES
593
- - All Homes: Zillow defines all homes as single-family, condominium and co-operative homes with a county record. Unless specified, all series cover this segment of the housing stock.
594
- - Condo/Co-op: Condominium and co-operative homes.
 
595
  - Multifamily 5+ units: Units in buildings with 5 or more housing units, that are not condominiums or co-ops.
596
- - Duplex/Triplex/Quadplex: Housing units in buildings with 2, 3, or 4 housing units.
597
 
598
  # Example Usage
599
  ```python
 
432
  This dataset contains several configs produced based on files available at https://www.zillow.com/research/data/.
433
 
434
  Supported configs:
435
+ - [`days_on_market`](#days-on-market): Days to pending, days to close, share of listings with a price cut, and price cuts.
436
+ - [`for_sale_listings`](#for-sale-listings): Median listing price, new listings, and new pending listings.
437
  - [`home_values`](#home-values): Zillow Home Value Index (ZHVI) for all homes, mid-tier, bottom-tier, and top-tier homes.
438
  - [`home_values_forecasts`](#home-values-forecasts): Zillow Home Value Forecast (ZHVF) for all homes, mid-tier, bottom-tier, and top-tier homes.
439
+ - [`new_construction`](#new-construction): Median sale price, median sale price per square foot, and sales count.
440
  - [`rentals`](#rentals): Zillow Observed Rent Index (ZORI) for all homes, mid-tier, bottom-tier, and top-tier homes.
 
441
  - [`sales`](#sales): Median sale price, median sale price per square foot, and sales count.
442
+
443
+ ## DAYS ON MARKET AND PRICE CUTS (TODO investigate columns more)
444
+
445
+ Days to Pending: How long it takes homes in a region to change to pending status on Zillow.com after first being shown as for sale. The reported figure indicates the number of days (mean or median) that it took for homes that went pending during the week being reported, to go pending. This differs from the old “Days on Zillow” metric in that it excludes the in-contract period before a home sells.
446
+ Days to Close (mean/median): Number of days between the listing going pending and the sale date.
447
+ Share of Listings With a Price Cut: The number of unique properties with a list price at the end of the month that’s less than the list price at the beginning of the month, divided by the number of unique properties with an active listing at some point during the month.
448
+ Price Cuts: The mean and median price cut for listings in a given region during a given time period, expressed as both dollars ($) and as a percentage (%) of list price.
449
+
450
+ Base Columns
451
+ - `Region ID`: dtype="string", a unique identifier for the region
452
+ - `Size Rank`: dtype="int32", a rank of the region's size
453
+ - `Region`: dtype="string", the name of the region
454
+ - `Region Type`: dtype="class_label", the type of region
455
+ - '0': zip
456
+ - '1': city
457
+ - '2': county
458
+ - '3': msa
459
+ - '4': state
460
+ - '5': country
461
+ - `State`: dtype="string", the US state abbreviation for the state containing the region
462
+ - `Home Type`: dtype="string", the type of home
463
+ - '0': multifamily
464
+ - '1': condo/co-op
465
+ - '2': SFR
466
+ - '3': all homes
467
+ - '4': all homes plus multifamily
468
+ - `Date`: dtype="timestamp[ms]", the date of the last day of the week for this data
469
+
470
+ Value Columns
471
+ - `Mean Listings Price Cut Amount (Smoothed)`: dtype="float32"
472
+ - `Percent Listings Price Cut`: dtype="float32", The number of unique properties with a list price at the end of the month that’s less than the list price at the beginning of the month, divided by the number of unique properties with an active listing at some point during the month.
473
+ - `Mean Listings Price Cut Amount`: dtype="float32"
474
+ - `Percent Listings Price Cut (Smoothed)`: dtype="float32"
475
+ - `Median Days on Pending (Smoothed)`: dtype="float32", median number of days it takes for homes in a region to change to pending status on Zillow.com after first being shown as for sale. (smoothed)
476
+ - `Median Days on Pending`: dtype="float32", median number of days it takes for homes in a region to change to pending status on Zillow.com after first being shown as for sale.
477
+
478
+ ## FOR-SALE LISTINGS
479
+
480
+ Base Columns
481
+ - `Region ID`: dtype="string", a unique identifier for the region
482
+ - `Size Rank`: dtype="int32", a rank of the region's size
483
+ - `Region`: dtype="string", the name of the region
484
+ - `Region Type`: dtype="class_label", the type of region
485
+ - '0': zip
486
+ - '1': city
487
+ - '2': county
488
+ - '3': msa
489
+ - '4': state
490
+ - `State`: dtype="string", the US state abbreviation for the state containing the region
491
+ - `Home Type`: dtype="string", the type of home
492
+ - '0': all homes
493
+ - '1': all homes plus multifamily
494
+ - '2': SFR
495
+ - '3': condo/co-op
496
+ - '4': multifamily
497
+ - `Date`: dtype="timestamp[ms]", the date of the last day of the month for this data
498
+
499
+ Value Columns
500
+ - `Median Listing Price`: dtype="float32", The median price at which homes across various geographies were listed.
501
+ - `Median Listing Price (Smoothed)`: dtype="float32", The median price at which homes across various geographies were listed. (smoothed)
502
+ - `New Listings`: dtype="int32", how many new listings have come on the market in a given month
503
+ - `New Listings (Smoothed)`: dtype="int32", how many new listings have come on the market in a given month. (smoothed)
504
+ - `New Pending (Smoothed)`: dtype="int32", The count of listings that changed from for-sale to pending status on Zillow.com in a given time period. (smoothed)
505
+ - `New Pending`: dtype="int32", The count of listings that changed from for-sale to pending status on Zillow.com in a given time period.
506
+
507
 
508
  ## HOME VALUES
509
 
 
521
  - `Region ID`: dtype="string", a unique identifier for the region
522
  - `Size Rank`: dtype="int32", a rank of the region's size
523
  - `Region`: dtype="string", the name of the region
524
+ - `Region Type`: dtype="class_label", the type of region
525
+ - '0': zip
526
+ - '1': city
527
+ - '2': county
528
+ - '3': msa
529
+ - '4': state
530
+ - '5': country"
531
  - `State`: dtype="string", the US state abbreviation for the state containing the region
532
+ - `Home Type`: dtype="class_label", the type of home
533
+ - '0': multifamily
534
+ - '1': condo/co-op
535
+ - '2': SFR
536
+ - '3': all homes
537
+ - '4': all homes plus multifamily
538
+ - `Bedroom Count`: dtype="class_label", the number of bedrooms
539
+ - '0': 1-Bedroom
540
+ - '1': 2-Bedrooms
541
+ - '2': 3-Bedrooms
542
+ - '3': 4-Bedrooms
543
+ - '4': 5+-Bedrooms
544
+ - '5': All Bedrooms
545
+ - `Date`: dtype="timestamp[ms]", the date of the last day of the month for this data
546
 
547
  Value Columns
548
  - `Mid Tier ZHVI (Smoothed) (Seasonally Adjusted)`: dtype="float32",
 
562
  - `Region ID`: dtype="string", a unique identifier for the region
563
  - `Size Rank`: dtype="int32", a rank of the region's size
564
  - `Region`: dtype="string", the name of the region
565
+ - `Region Type`: dtype="class_label", the type of region
566
+ - '0': county
567
+ - '1': city
568
+ - '2': zip
569
+ - '3': country
570
+ - '4': msa
571
  - `State`: dtype="string", the US state abbreviation for the state containing the region
572
+ - `City`: dtype="string",
573
+ - `Metro`: dtype="string",
574
+ - `County`: dtype="string",
575
  - `Home Type`: dtype="string", the type of home
576
+ - `Date`: dtype="timestamp[ms]", the date of these forecasts
577
 
578
  Value Columns
579
  - `Month Over Month % (Smoothed)`: dtype="float32",
 
583
  - `Quarter Over Quarter % (Raw)`: dtype="float32"
584
  - `Year Over Year % (Raw)`: dtype="float32"
585
 
586
+ ## NEW CONSTRUCTION
587
 
588
  Base Columns
589
  - `Region ID`: dtype="string", a unique identifier for the region
590
  - `Size Rank`: dtype="int32", a rank of the region's size
591
  - `Region`: dtype="string", the name of the region
592
+ - `Region Type`: dtype="class_label", the type of region
593
+ - '0': county
594
+ - '1': city
595
+ - '2': zip
596
+ - '3': country
597
+ - '4': msa
598
  - `State`: dtype="string", the US state abbreviation for the state containing the region
599
+ - `Home Type`: dtype="class_label", the type of home
600
+ - '0': all homes
601
+ - '1': all homes plus multifamily
602
+ - '2': SFR
603
+ - '3': condo/co-op
604
+ - '4': multifamily
605
+ - `Date`: dtype="timestamp[ms]", the date of the last day of the month for this data
606
+
607
  Value Columns
608
+ - `Median Sale Price`: dtype="float32", the median sale price of new construction homes that sold during the month in the specified region
609
+ - `Median Sale Price per Sqft`: dtype="float32", the median sale price per square foot of new construction homes that sold during the month in the specified region
610
+ - `Sales Count`: dtype="int32", the number of new construction homes that sold during the month in the specified region
611
 
612
+ ## RENTALS
613
 
614
  Base Columns
615
  - `Region ID`: dtype="string", a unique identifier for the region
616
  - `Size Rank`: dtype="int32", a rank of the region's size
617
  - `Region`: dtype="string", the name of the region
618
+ - `Region Type`: dtype="class_label", the type of region
619
+ - '0': county
620
+ - '1': city
621
+ - '2': zip
622
+ - '3': country
623
+ - '4': msa
624
  - `State`: dtype="string", the US state abbreviation for the state containing the region
625
  - `Home Type`: dtype="string", the type of home
626
+ - '0': all homes
627
+ - '1': all homes plus multifamily
628
+ - '2': SFR
629
+ - '3': condo/co-op
630
+ - '4': multifamily
631
+ - `Date`: dtype="timestamp[ms]", the date of the last day of the month for this data
 
 
 
632
 
633
+ Value Columns
634
+ - `Rent (Smoothed)`: dtype="float32", Zillow Observed Rent Index (ZORI): A smoothed measure of the typical observed market rate rent across a given region. ZORI is a repeat-rent index that is weighted to the rental housing stock to ensure representativeness across the entire market, not just those homes currently listed for-rent. The index is dollar-denominated by computing the mean of listed rents that fall into the 40th to 60th percentile range for all homes and apartments in a given region, which is weighted to reflect the rental housing stock.
635
+ - `Rent (Smoothed) (Seasonally Adjusted)`: dtype="float32", Zillow Observed Rent Index (ZORI) :A smoothed measure of the typical observed market rate rent across a given region. ZORI is a repeat-rent index that is weighted to the rental housing stock to ensure representativeness across the entire market, not just those homes currently listed for-rent. The index is dollar-denominated by computing the mean of listed rents that fall into the 40th to 60th percentile range for all homes and apartments in a given region, which is weighted to reflect the rental housing stock.
636
 
637
  ## SALES (TODO investigate columns)
638
  <!-- Sale-to-List Ratio (mean/median): Ratio of sale vs. final list price. -->
 
642
  - `Region ID`: dtype="string", a unique identifier for the region
643
  - `Size Rank`: dtype="int32", a rank of the region's size
644
  - `Region`: dtype="string", the name of the region
645
+ - `Region Type`: dtype="class_label", the type of region
646
+ - '0': county
647
+ - '1': city
648
+ - '2': zip
649
+ - '3': country
650
+ - '4': msa
651
  - `State`: dtype="string", the US state abbreviation for the state containing the region
652
+ - `Home Type`: dtype="class_label", the type of home
653
+ - '0': all homes
654
+ - '1': all homes plus multifamily
655
+ - '2': SFR
656
+ - '3': condo/co-op
657
+ - '4': multifamily
658
+ - `Date`: dtype="timestamp[ms]", the date of the last day of the month for this data
659
 
660
  Value Columns
661
  - `Median Sale Price`: dtype="float32", The median price at which homes across various geographies were sold.
662
  - `Median Sale Price per Sqft`: dtype="float32" The median price per square foot at which homes across various geographies were sold.
663
  - `Sales Count`: dtype="int32", The "Sales Count Nowcast" is the estimated number of unique properties that sold during the month after accounting for the latency between when sales occur and when they are reported.
664
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
665
  ## DEFINITIONS OF HOME TYPES
666
+ - all Homes: Zillow defines all homes as single-family, condominium and co-operative homes with a county record. Unless specified, all series cover this segment of the housing stock.
667
+ - SFR: single family residence
668
+ - condo/co-op: Condominium and co-operative homes.
669
  - Multifamily 5+ units: Units in buildings with 5 or more housing units, that are not condominiums or co-ops.
670
+ <!-- - Duplex/Triplex/Quadplex: Housing units in buildings with 2, 3, or 4 housing units. -->
671
 
672
  # Example Usage
673
  ```python