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
We should avoid DataFrame.plot(), which is changing in new versions of pandas and often had some weird interactions anyway. And as long as we are revisiting the usage, we should use the nice labeled data API in matplotlib.
plt.plot(d) # automatically plots Series against its index
plt.plot('mass', 'size', data=f) # plots f['mass'] vs. f['size']
plt.plot('mass', 'size', 'ecc', data=f) # plots f['mass'] vs. f['size'] coloring by 'ecc' (cool!)
This has to wait until 1.5.0 is available on conda, but we could always go back after v0.3.0 is released to revise and rebuild the 0.3.0 docs.
The text was updated successfully, but these errors were encountered:
We should avoid
DataFrame.plot()
, which is changing in new versions of pandas and often had some weird interactions anyway. And as long as we are revisiting the usage, we should use the nice labeled data API in matplotlib.This has to wait until 1.5.0 is available on conda, but we could always go back after v0.3.0 is released to revise and rebuild the 0.3.0 docs.
The text was updated successfully, but these errors were encountered: