I am a beginner of using tsfresh. I am using it to extract characteristics from time series. Using the below code(sample code of tsfresh website) gives me 97 new features (F_x__abs_energy, F_x__range_count__max_1__min_-1, F_x__variance, F_x__standard_deviation and so on) for one feature named as F_x. But I don't need need all of them. Let's say i just want to calculate only F_x__variance and F_x__standard_deviation. What should I change in the below code?
from tsfresh import extract_relevant_features
from tsfresh.feature_extraction import ComprehensiveFCParameters
settings = ComprehensiveFCParameters()
features_filtered_direct = extract_relevant_features(df, y, column_id='id', column_sort='time')
I also read this documentation but I didn't find specific things to do this or may be I don't understand as a beginner. Correct me if I am wrong from my site.