seaborn jointplot regression

Solutions on MaxInterview for seaborn jointplot regression by the best coders in the world

showing results for - "seaborn jointplot regression"
Dustin
04 Nov 2020
1#The jointplot allows us to create  a scatter plot. The x is the column of the
2#df that we would like to have on the x-axis.
3#The y is the column of the dataframe that we would like on the y-axis.
4#The data is the dataframe we are deriving the values from.
5#The kind is assigned as reg since we want to create a regression
6sns.jointplot(x='QQQ', y='SPY', data=df, kind='reg')
7plt.show()