forked from Karveandhan/rental-price
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path02-data.Rmd
31 lines (19 loc) · 1.44 KB
/
02-data.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Data sources
## Source
We scraped the data from https://www.zillow.com/research/data/, which is a big player in NY rental market. 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 once again weighted to reflect the rental housing stock.
## Information about the data
* Number of rows - 105
* Number of columns - 97
The data contains the rental prices (in USD) of 104 different cities in US from Jan 2014 to Oct 2021.
## Format of the data
Variables | Description
----------------------- | ------------------------------------------------------------------------------------------------
RegionID | ID mentioned for that particular region of US (Integer)
RegionName | A city in the US (String)
SizeRank | The rank assigned to that particular region (Integer)
2014-01 to 2021-10 | Rental price for that particular month, in USD (Integer)
## A quick sample of the data
```{r, fig.width=20, fig.height=8}
data <- read.csv("data.csv",header = TRUE, sep=",")
head(data, 10)
```