tidyZillow: Tidy zillow research time series data

Description Usage Arguments Details Value Author(s) Examples

Description

Tidy zillow time series research data using data.table

Usage

1
tidyZillow(zillow.df, series.name = "value")

Arguments

zillow.df

A dataframe from with the raw zillow data

series.name

a string with the series name. default is "value"

Details

see http://www.zillow.com/research/data/

Value

a tidy data.table with the zillow data

Author(s)

Chandler Lutz

Examples

1
2
3
4
5
6
##state level data
library(data.table)
url <- "http://files.zillowstatic.com/research/public/State/State_Zhvi_AllHomes.csv"
zillow.state <- fread(url)
zillow.state <- tidyZillow(zillow.state, series.name = "ZillowState")
head(zillow.state)

ChandlerLutz/tidyZillow documentation built on May 6, 2019, 9:56 a.m.