Nothing
test_that("Test calculate_hedonic_index", {
# Invalid method should error
expect_error(
calculate_hedonic_index(
method = "invalid",
dataset = data_constraxion,
period_variable = "period",
dependent_variable = "price",
numerical_variables = "floor_area",
categorical_variables = "neighbourhood_code"
),
"Invalid method"
)
# Single method should work
expect_silent(
calculate_hedonic_index(
method = "fisher",
dataset = data_constraxion,
period_variable = "period",
dependent_variable = "price",
numerical_variables = "floor_area",
categorical_variables = "neighbourhood_code",
reference_period = 2015
)
)
# Multiple methods (no HMTS) should work
result <- calculate_hedonic_index(
method = c("fisher", "paasche", "timedummy"),
dataset = data_constraxion,
period_variable = "period",
dependent_variable = "price",
numerical_variables = "floor_area",
categorical_variables = "neighbourhood_code",
reference_period = 2015
)
expect_type(result, "list")
expect_named(result, c("fisher", "paasche", "timedummy"))
# Multiple methods with resting_points = TRUE should error
expect_error(
calculate_hedonic_index(
method = c("fisher", "hmts"),
dataset = data_constraxion,
period_variable = "period",
dependent_variable = "price",
numerical_variables = "floor_area",
categorical_variables = "neighbourhood_code",
reference_period = 2015,
periods_in_year = 4,
number_preliminary_periods = 2,
resting_points = TRUE
),
"resting_points = TRUE"
)
})
test_that("Testplot_price_index ", {
result <- calculate_hedonic_index(
method = c("fisher", "paasche"),
dataset = data_constraxion,
period_variable = "period",
dependent_variable = "price",
numerical_variables = "floor_area",
categorical_variables = "neighbourhood_code",
reference_period = 2015
)
expect_silent(plot_price_index(result))
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.