在Jupyter中绘制熊猫时的用户警告

时间:2018-11-26 22:02:01

标签: python pandas jupyter-notebook

在绘制数据框时出现用户警告。

UserWarning: Pandas doesn't allow columns to be created via a new attribute name - see https://pandas.pydata.org/pandas-docs/stable/indexing.html#attribute-access
series.name = label

我已经转到了Web链接,但似乎找不到我做错的事情。我的代码如下:

f, axs = plt.subplots(4, sharex=True)
df.plot('time', ['a', 'b'], color=['red','blue'], ax=axs[0])

它在上面第二行给出警告。

df.head(1)返回以下格式的数据。我对此数据框所做的任何单个绘图都会产生相同的错误。

  time       b        a        bR     aR       bS    bS4  \
0 12:00:00   601.61   601.99   nan    601.92   775   975   

   bS8  bS16    aS2 ...   aRa_8  aRa_16    \
0  1373 2396    1340 ...  5      5

  [1 x 45 columns]

0 个答案:

没有答案