We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Compare these 2 plots below, this is not expected behavior:
import pandas as pd from numpy.random import rand testarr1=rand(100) testarr2=rand(100) pd.DataFrame(testarr2,index=testarr1).plot(style='.') pd.DataFrame(testarr2,index=testarr1).sort().plot(style='.')