I would like to smooth time series data. For this I would like to use Python.
Now I have already found the function scipy.ndimage.gaussian_filter1d.
For this, the array and a sigma value must be passed.
Now to my question:
Is the sigma value equal to the filter length? I would like to run a filter of length 365 over the data. Would it then be the correct procedure to set this sigma value to 365 or am I confusing things?
