Grafice multiple
În ultimul exercițiu vom reprezenta grafic o comparație a chiriilor de piață pentru apartamente cu 1 dormitor și 2 dormitoare.
Acest exercițiu face parte din cursul
Vizualizarea datelor cu Seaborn – nivel intermediar
Instrucțiuni pentru exercițiu
- Creează două obiecte axe,
ax0șiax1. - Reprezintă
fmr_1peax0șifmr_2peax1. - Afișează graficele unul lângă altul.
Exercițiu interactiv practic
Încearcă acest exercițiu completând acest cod de exemplu.
# Create a plot with 1 row and 2 columns that share the y axis label
fig, (ax0, ax1) = plt.subplots(nrows=____, ncols=____, sharey=____)
# Plot the distribution of 1 bedroom apartments on ax0
sns.histplot(df['____'], ax=____)
____.set(xlabel="1 Bedroom Fair Market Rent", xlim=(100,1500))
# Plot the distribution of 2 bedroom apartments on ax1
sns.histplot(df['____'], ax=____)
____.set(xlabel="2 Bedroom Fair Market Rent", xlim=(100,1500))
# Display the plot
plt.show()