plotting two columns of a dataframe in python

24

df.plot(x='col_name_1', y='col_name_2')
df.plot(x='col_name_1', y='col_name_2', style='o')

Comments

Submit
0 Comments