Zillow Observed Rent Index (ZORI) - Zip_ZORI_AllHomesPlusMultifamily_SSA

Data - Zillow


Info

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 once again weighted to reflect the rental housing stock. Details available in ZORI methodology.

RegionID

Code
Zip_ZORI_AllHomesPlusMultifamily_SSA %>%
  group_by(SizeRank, MsaName, RegionID, RegionName) %>%
  summarise(Nobs = n()) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}

date

Code
Zip_ZORI_AllHomesPlusMultifamily_SSA %>%
  group_by(date) %>%
  summarise(Nobs = n()) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}