Answers for "seaborn joint plot"

1

seaborn jointplot regression

#The jointplot allows us to create  a scatter plot. The x is the column of the
#df that we would like to have on the x-axis.
#The y is the column of the dataframe that we would like on the y-axis.
#The data is the dataframe we are deriving the values from.
#The kind is assigned as reg since we want to create a regression
sns.jointplot(x='QQQ', y='SPY', data=df, kind='reg')
plt.show()
Posted by: Guest on September-15-2021
2

plot histogram in seaborn

sns.distplot(gapminder['lifeExp'], kde=False, color='red', bins=100)
plt.title('Life Expectancy', fontsize=18)
plt.xlabel('Life Exp (years)', fontsize=16)
plt.ylabel('Frequency', fontsize=16)
Posted by: Guest on May-30-2020
2

plot distribution seaborn

x = np.random.normal(size=100)
sns.distplot(x);
Posted by: Guest on February-04-2020

Python Answers by Framework

Browse Popular Code Answers by Language