I have to lists of that kind (series and pred_upd):
I try to put them together on a plot doing that:
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()
I receive error:
-> 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
What I do wrong?
