在Matplotlib中绘制列表

时间:2016-08-31 09:01:36

标签: python list matplotlib plot

我必须列出那种(系列和pred_upd):

enter image description here

我试着把它们放在一起做这样的情节:

az = series.plot(figsize=(12,8), label='o')
ax = pred_upd.plot(style='r--', label='Dynamic Prediction');
ax.legend();
az.legend();
plt.plot()
plt.show()

我收到错误:

-> 2417         if isinstance(data, DataFrame):
   2418             if x is not None:
   2419                 if com.is_integer(x) and not data.columns.holds_integer():

TypeError: isinstance() arg 2 must be a type or tuple of types

我做错了什么?

1 个答案:

答案 0 :(得分:2)

如果您使用matplotlib,我认为您使用的不正确。我无法真正推断变量typeseriespred_upd是什么,但我假设它们属于list类型(来自您的示例)。

使用matplotlib:

import matplotlib.pyplot as plt
plt.plot(series)
plt.hold(True)
plt.plot(pred_upd)
plt.show()

您可以在其中放置一些参数 - 但这应该是格式。