output {dsa} | R Documentation |
Creating Output for dsa
Description
This function creates HTML output in a specified folder for objects of class daily
Usage
output(
daily_object,
path = getwd(),
short = FALSE,
SI = TRUE,
SI365.seed = 3,
spec = TRUE,
outlier = TRUE,
Factor = "auto",
every_day = TRUE,
seasonals = FALSE,
spectrum_linesize = 0.5,
seasonality_tests = TRUE,
progress_bar = TRUE
)
Arguments
daily_object |
output of dsa() function |
path |
Path that HTML file is written to |
short |
Boolean. If true only short version of output is produced |
SI |
Including graphs of SI-ratios |
SI365.seed |
This seed influences which days of the year are shown as SI-ratios |
spec |
Boolean. Inclusion of spectral plots |
outlier |
Boolean. Inclusion of outlier plots |
Factor |
Scaling factor for series with large values |
every_day |
Boolean. Inclusion of table that summarizes daily results |
seasonals |
Boolean. Plots of seasonal factors as interactive instead of static graph |
spectrum_linesize |
Width of lines in spectrum |
seasonality_tests |
Boolean. Inclusion of seasonality tests |
progress_bar |
Should a progress bar be displayed? |
Details
This function can be used to create plots and tables necessary for the analysis of seasonally and calendar adjusted daily time series. Uses the output of dsa() as an input.
Author(s)
Daniel Ollech
Examples
res <- dsa(daily_sim(4)$original, cval=7, model=c(3,1,0),fourier_number = 13)
## Not run: output(res)