You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importpeakingduckaspddata=pd.core.NumericalData([2,3.4,5,123.,123.2,6453.42,3.5,345.34,23.4,524.542,89.3])
pm=pd.core.SimpleProcessManager()
# this causes problems, due to Python ref counting# comment it out to find out#pm.append(pd.core.SavitzkyGolaySmoother(3))# this also causes issues#sg = pd.core.SavitzkyGolaySmoother(3)#pm.append(sg)#del sg# this is OK, since it is fro C++pm.append(pd.core.MovingAverageSmoother(3))
# process the dataprocesseddata=pm.run(data).to_list()
print(processeddata)
The following script shows the problem:
Related to:
The text was updated successfully, but these errors were encountered: