Bar Plots: Hue
Завдання
Swipe to show code editor
- Implement a more advanced bar plot by plotting the values of the
'day'
column as thex
variable and the values of the'total_bill'
asy
.
Рішення
import seaborn as sns
import matplotlib.pyplot as plt
# Setting plot style: grey grid in the background
sns.set(style='darkgrid')
# Loading the dataset
tips = sns.load_dataset('tips')
# Setting the figure size
plt.figure(figsize=(8, 8))
# Create a bar plot
sns.barplot(x='day', y='total_bill', hue='smoker', data=tips, errorbar=None);
Mark tasks as Completed
Все було зрозуміло?
Дякуємо за ваш відгук!
Секція 1. Розділ 5