How to Scatter Plot Series using Pandas December 29, 2023 by Tarik I think the easiest is: For series series.plot(style=".") For dataframe df.plot(x='x_col', y='y_col', style=".")