Description Usage Arguments Value Further Details Examples
Wrapper to create index object via entire random forest approach
1 2 |
trans_df |
data.frame of transactions |
dep_var |
default = NULL; Dependent variable in hedonic model |
ind_var |
default = NULL; Independent variables in the hedonic model |
rf_spec |
default = NULL; Full random forest model specification |
... |
Additional Arguments |
'hpi“ object. S3 list with:
'hpidata' object
'hpimodel' object
'hpiindex' object
Additional argument need to provide necessary argument for create 'hpidata' objects if the 'trans_df' object is not of that class.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # Load data
data(ex_sales)
# Create index with raw transaction data
rf_index <- rfIndex(trans_df = ex_sales,
periodicity = 'monthly',
min_date = '2010-06-01',
max_date = '2015-11-30',
adj_type = 'clip',
date = 'sale_date',
price = 'sale_price',
trans_id = 'sale_id',
prop_id = 'pinx',
estimator = 'pdp',
log_dep = TRUE,
trim_model = TRUE,
max_period = 48,
dep_var = 'price',
ind_var = c('tot_sf', 'beds', 'baths'),
smooth = FALSE,
ntrees = 10,
sim_count = 2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.