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
This is a followup question to issue 1527 (#1527) which dealt with the ability to plot two column values against one another - which was added to pandas 0.8.1
Is there a way that each x-y position can be represented as points rather than as a line? For example the following will generate a squiggly line where points would be more useful:
This is a followup question to issue 1527 (#1527) which dealt with the ability to plot two column values against one another - which was added to pandas 0.8.1
Is there a way that each x-y position can be represented as points rather than as a line? For example the following will generate a squiggly line where points would be more useful:
from pandas import DataFrame
df = DataFrame(np.random.randn(100, 2), columns=['a', 'b']
df.plot(x='a',y='b')
thanks,
zach cp
The text was updated successfully, but these errors were encountered: