“Гистограмма Seaborn” Ответ

Гистограмма Seaborn

import pandas as pd
import seaborn as sns

df = pd.read_csv("https://jbencook.s3.amazonaws.com/data/dummy-sales-large.csv")

# Plot the histogram
sns.histplot(df, x="revenue")
Badhri Narayanan R

Гистограмма сюжета в морском

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)
Witty Wryneck

Распределение участка Seaborn

x = np.random.normal(size=100)
sns.distplot(x);
Proud Penguin

Как показать средние значения на гистограмму у морских

import matplotlib.pyplot as plt
import seaborn as sns

%matplotlib inline

sns.distplot(xgb_errors, kde=True, rug=True);
plt.axvline(np.median(xgb_errors),color='b', linestyle='--')
Grumpy Grasshopper

Гистограмма сюжета Seaborn для всех колонн

df.plot.hist(subplots=True, legend=True, layout=(1, 3))
Real Raccoon

Ответы похожие на “Гистограмма Seaborn”

Вопросы похожие на “Гистограмма Seaborn”

Смотреть популярные ответы по языку

Смотреть другие языки программирования