I would like to produce a Scatterplot from a Pandas dataframe using the following code:
df.plot.scatter(x='one', y='two, title='Scatterplot')
Is there a Parameter I can send with the Statement, so it plots a Regression line and shows the Parameters of the fit?
something like:
df.plot.scatter(x='one', y='two', title='Scatterplot', Regression_line)