Replies: 5 comments 1 reply
-
Thanks for your question! I assume you refer to the features selection part. Do you refer to the features or the target when you say continuous or categorical? tsfresh will work for all kind of combinations (feature real or binary, target real or binary). For multi-class selection there exist options for the features selection (which turn this on). |
Beta Was this translation helpful? Give feedback.
-
yes Feature extraction for further use for multivariate time series prediction both regression and classification do you have example where Feature extraction and after it used for multivariate time series prediction both regression and classification |
Beta Was this translation helpful? Give feedback.
-
So just to clarify (because I am still confused concerning your example), |
Beta Was this translation helpful? Give feedback.
-
in tabular data order of rows is not important 1 2
time 1| black 56 m 160 34 yes etc |
Beta Was this translation helpful? Give feedback.
-
Ah, now I understand.
|
Beta Was this translation helpful? Give feedback.
-
great code thanks
may you clarify :
will it work for multivariate time series prediction both regression and classification
1
where all values are continues values
weight height age target
1 56 160 34 1.2
2 77 170 54 3.5
3 87 167 43 0.7
4 55 198 72 0.5
5 88 176 32 2.3
2
or even will it work for multivariate time series where values are mixture of continues and categorical values
for example 2 dimensions have continues values and 3 dimensions are categorical values
1 black 56 m 160 34 yes
2 white 77 f 170 54 no
3 yellow 87 m 167 43 yes
4 white 55 m 198 72 no
5 white 88 f 176 32 yes
Beta Was this translation helpful? Give feedback.
All reactions