You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there any way to extract the dataframes containing the decomposition of the time series? That is, one column for the trend, another for the seasonality, etc.
Thanks
The text was updated successfully, but these errors were encountered:
You can use the _params attribute for a trained model which contains all the training related information. Specifically, to get the model coefficients related info, you can do something like this:
model._params['model'].summary()
Here, model represents a trained structural model object: luminaire.model.lad_structural.LADStructuralModel
Hello!
Is there any way to extract the dataframes containing the decomposition of the time series? That is, one column for the trend, another for the seasonality, etc.
Thanks
The text was updated successfully, but these errors were encountered: