“Барная схема с Seaborn” Ответ

Барная схема с Seaborn

import seaborn as sns
import matplotlib.pyplot as plt

fig, ax = plt.subplots(figsize=(10,10))
# x and y are lists
sns.barplot(x=x, y=y, color='goldenrod', ax=ax, label="Some Label")
ax.set_xlabel("X-Label")
ax.set_ylabel("Y-Label")
ax.legend()
plt.show()
Tense Tarantula

Как перекрывать два баржеров в Seaborn

# instead of seaborn use plt.bar 

import matplotlib.pyplot as plt
import seaborn as sns

# Load the example car crash dataset
crashes = sns.load_dataset("car_crashes").sort_values("total", ascending=False)

# states of interest
txcahi = crashes[crashes['abbrev'].isin(['TX','CA','HI'])]

# Plot the total crashes
f, ax = plt.subplots(figsize=(10, 5))
plt.xticks(rotation=90, fontsize=10)

plt.bar(height="total", x="abbrev", data=crashes, label="Total", color="lightgray")
plt.bar(height="total", x="abbrev", data=txcahi, label="Total", color="red")

sns.despine(left=True, bottom=True)
dat boi

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

Вопросы похожие на “Барная схема с Seaborn”

Больше похожих ответов на “Барная схема с Seaborn” по Python

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

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