I have a pandas dataframe and would like to plot values from one column versus the values from another column. Fortunately, there is plot
method associated with the data-frames that seems to do what I need:
df.plot(x='col_name_1', y='col_name_2')
Unfortunately, it looks like among the plot styles (listed here after the kind
parameter) there are not points. I can use lines or bars or even density but not points. Is there a work around that can help to solve this problem.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…