regression using python seaborn

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

showing results for - "regression using python seaborn"
David
05 Aug 2016
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()