Description Usage Arguments Value Further Details Examples
View source: R/calcInSampleError.R
Estimate the predictive error of an index via an in-sample approach.
1 | calcInSampleError(pred_df, index, ...)
|
pred_df |
Set of sales against which to test predictions |
index |
Index (of class 'ts') to be tested for accuracy |
... |
Additional Arguments |
object of class 'hpiaccuracy' inheriting from class 'data.frame' containing the following fields:
Uniq Pair ID number
Transaction Price
Predicted price
(Prediction - Actual) / Actual
log(prediction) - log(actual)
Period of the prediction
In addition to being a stand-alone function, it is also used by 'calcForecastError' and 'calcKFoldError“
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # Load example data
data(ex_sales)
# Create index with raw transaction data
rt_index <- rtIndex(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 = 'robust',
log_dep = TRUE,
trim_model = TRUE,
max_period = 48,
smooth = FALSE)
# Calculate accuracy
in_accr <- calcInSampleError(pred_df = rt_index$data,
index = rt_index$index$value)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.