Sacramento | R Documentation |
This data frame contains house and sale price data for 932 homes in Sacramento CA. The original data were obtained from the website for the SpatialKey software. From their website: "The Sacramento real estate transactions file is a list of 985 real estate transactions in the Sacramento area reported over a five-day period, as reported by the Sacramento Bee." Google was used to fill in missing/incorrect data.
Sacramento |
a data frame with columns ' |
SpatialKey website: https://support.spatialkey.com/spatialkey-sample-csv-data/
data(Sacramento)
set.seed(955)
in_train <- createDataPartition(log10(Sacramento$price), p = .8, list = FALSE)
training <- Sacramento[ in_train,]
testing <- Sacramento[-in_train,]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.