Generalization of the plot function to
work on fitted TS model objects (class TS_fit) returned from
TS.
# S3 method for TS_fit plot(x, ..., plot_type = "summary", interactive = FALSE, cols = set_TS_summary_plot_cols(), bin_width = 1, xname = NULL, border = NA, selection = "median", LDATS = FALSE)
| x | A |
|---|---|
| ... | Additional arguments to be passed to subfunctions. Not currently
used, just retained for alignment with |
| plot_type | "diagnostic" or "summary". |
| interactive |
|
| cols |
|
| bin_width | Width of the bins used in the histograms of the summary time series plot, in units of the x-axis (the time variable used to fit the model). |
| xname | Label for the x-axis in the summary time series plot. Defaults
to |
| border | Border for the histogram, default is |
| selection | Indicator of the change points to use in the time series
summary plot. Currently only defined for |
| LDATS |
|
NULL.
# \donttest{ data(rodents) document_term_table <- rodents$document_term_table document_covariate_table <- rodents$document_covariate_table LDA_models <- LDA_set(document_term_table, topics = 2)[[1]] data <- document_covariate_table data$gamma <- LDA_models@gamma weights <- document_weights(document_term_table) TSmod <- TS(data, gamma ~ 1, nchangepoints = 1, "newmoon", weights) plot(TSmod) # }