Closed alexhallam closed 6 years ago
The argument features
should be a vector of function names. These functions are operations of time series features. x_acf1
comes from the outputs of the acf_features
function in the package tsfeatures
. Also, the stl_features
function in the package tsfeatures
outputs a vector of time series feature including trend, linearity, seasonal_strength, etc.
In your case, the argument features
can be set as c('stl_features', 'acf_features', 'entropy', 'lumpiness', 'flat_spots', 'crossing_points', 'max_kl_shift', 'max_level_shift', 'max_var_shift', 'mean', 'var')
.
That makes sense. Thanks!
I am trying to find the list of features and selected features. Where I can find this? I could not find that on the repo, if I am not missing.
Sorry, if I am misunderstanding this package. My end goal is to make many simulations of many time series. To test this I used
tsfeatures
on just one series. In the code below I am passing the results fromtsfeatures
totsgeneration::generate_ts_with_target
. The problem is I am getting the following errorCreated on 2018-10-05 by the reprex package (v0.2.0).