I am trying to extract frequency band features using following way
feature=['energy_freq_bands','pow_freq_bands','line_length', 'kurtosis', 'ptp_amp', 'skewness']
fe = FeatureExtractor(sfreq=128, selected_funcs=feature)
X_new=fe.fit_transform(X)
It throwing me following error
'The entries of the given freq_bands parameter (%s) must be positive and less than the Nyquist 'frequency.' % str(freq_bands).
So how can I remove the 100Hz frequency value limit from ['energy_freq_bands','pow_freq_bands'] while extracting features.
I mean how can I just set freq_bands=np.array([0.5, 4., 8., 13.,30.]) without changing much things
I am trying to extract frequency band features using following way
It throwing me following error
'The entries of the givenfreq_bandsparameter (%s) must be positive and less than the Nyquist 'frequency.' % str(freq_bands).So how can I remove the 100Hz frequency value limit from
['energy_freq_bands','pow_freq_bands']while extracting features.I mean how can I just set
freq_bands=np.array([0.5, 4., 8., 13.,30.])without changing much things