UShouseprice {GrFA} | R Documentation |
Housing price data for 16 states in the U.S.
Description
Housing price data for 16 states in the U.S over the period Jan 2000 to April 2023.
Usage
data("UShouseprice")
Format
A list with a length of 16. Each element is a matrix of dimension T*N_m
.
Source
The original data is downloaded from the website of Zillow.
Examples
data(UShouseprice)
log_diff = function(x){
T = nrow(x)
res = log(x[2:T,]/x[1:(T-1),])*100
scale(res, center = TRUE, scale = TRUE)
}
UShouseprice1 = lapply(UShouseprice, log_diff)
[Package GrFA version 0.1.1 Index]