processing | R Documentation |
Constructor for the processing
class representing a time series
processing method based on a particular time series transformation.
processing(
prep_func,
prep_par = NULL,
postp_func = NULL,
postp_par = NULL,
...,
subclass = NULL
)
prep_func |
A function for preprocessing the time series data. |
prep_par |
List of named parameters required by |
postp_func |
A function for postprocessing the time series data.
Generally reverses the transformation performed by |
postp_par |
List of named parameters required by |
... |
Other parameters to be encapsulated in the class object. |
subclass |
Name of new specialized subclass object created in case it is provided. |
An object of class processing
.
Rebecca Pontes Salles
Other constructors:
ARIMA()
,
LT()
,
MSE_eval()
,
evaluating()
,
modeling()
,
tspred()
base <- exp(1)
lt <- processing(prep_func=TSPred::LogT, prep_par=list(base=base),
postp_func=TSPred::LogT.rev, postp_par=list(base=base),
method="Logarithmic transform", subclass="LT")
summary(lt)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.