标签: python pandas gpx
我正在尝试使用gpxpy和this项目来解析一些坐标,但是当尝试从smoo1库中导入oceans时,我遇到此错误: from pandas import rolling_mean ImportError: cannot import name 'rolling_mean' 我已经尝试阅读并修复此错误,但是据我了解,该库尝试导入已贬值的函数。我不确定在这种情况下该怎么办。 我正在使用python 3.6。
smoo1
oceans
from pandas import rolling_mean ImportError: cannot import name 'rolling_mean'
答案 0 :(得分:2)
不推荐使用rolling_*函数,而推荐使用新的Rolling API。
rolling_*
Rolling
df['column'].rolling(window=x).mean()