data points connected in wrong order in line graph

Question:

I’m reading a pandas dataframe, and trying to generate a plot from it. In the plot, the data points seem to be getting connected in an order determined by ascending y value, resulting in a weird zig-zagging plot like this:

enter image description here

The code goes something like this:

from pandas import DataFrame as df
import matplotlib as mpl
mpl.use('Agg')
import matplotlib.pyplot as plt

data = df.from_csv(...)

plt.plot(data['COL1'], data['COL2'])

Any suggestions on how to fix the order in which the dots are connected (i.e. connect them in the sequence in which they appear going from left to right on the plot)? Thanks.

Asked By: Lamps1829

||

Answers:

Is the order of values in COL1 different from the csv?

You can sort by COL1 first, add this before plotting:

data.sort('COL1', inplace=True)
Answered By: Rutger Kassies
Categories: questions Tags: , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.