Dear Chris,
Good day to you.
I am trying to implement a few parts of your code on my data and I noticed an issue with the estimate_pars() function.
in line 223 of your code, you're passing np.arange(100,1000,10000) to signal.find_peaks_cwt function as width. np.arange(100,1000,10000) however, returns to a single value (100). I wonder if the order is wrong and you wanted to specify it as np.arange(100,10000,1000)?
Dear Chris,
Good day to you.
I am trying to implement a few parts of your code on my data and I noticed an issue with the estimate_pars() function.
in line 223 of your code, you're passing np.arange(100,1000,10000) to signal.find_peaks_cwt function as width. np.arange(100,1000,10000) however, returns to a single value (100). I wonder if the order is wrong and you wanted to specify it as np.arange(100,10000,1000)?