plot.hpi: Plot method for 'hpi' object

View source: R/plotFunctions.R

plot.hpiR Documentation

Plot method for 'hpi' object

Description

Specific plotting method for hpi objects

Usage

## S3 method for class 'hpi'
plot(x, ...)

Arguments

x

Object to plot of class 'hpi'

...

Additional Arguments

Value

'plotindex' object inheriting from a ggplot object

Further Details

Additional argument can include those argument for 'plot.hpindex“

Examples


 # Load 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)

 # Plot data
 plot(rt_index)
 plot(rt_index, smooth = TRUE)


andykrause/hpiR documentation built on Feb. 2, 2024, 8:13 p.m.