Extracting different features from different time series
tsfresh
extracts many features based on the time-series characteristics and distribution, such as their correlation properties, stationarity, and entropy. It also applies non-linear time-series analysis functions, which decompose the time-series signal through, for example, Fourier or wavelet transformations. Depending on the nature of the time series, some of these transformations make more sense than others. For example, wavelength decomposition methods can make sense for time series resulting from signals or sensors but are not always useful for time series representing sales or stock prices.
In this recipe, we will discuss how to optimize the feature extraction procedure to extract specific features from each time series, and then use these features to predict office occupancy.
How to do it...
tsfresh
accesses the methods that will be used to create features through a dictionary that contains the method names as...