Aan de slagBegin gratis

Customizing heatmaps

Seaborn supports several types of additional customizations to improve the output of a heatmap. For this exercise, we will continue to use the Daily Show data that is stored in the df variable but we will customize the output.

Deze oefening maakt deel uit van de cursus

Intermediate Data Visualization with Seaborn

Bekijk cursus

Oefeninstructies

  • Create a crosstab table of Group and YEAR
  • Create a heatmap of the data using the BuGn palette
  • Disable the cbar and increase the linewidth to 0.3

Interactieve oefening met praktijkervaring

Probeer deze oefening door deze voorbeeldcode aan te vullen.

# Create the crosstab DataFrame
pd_crosstab = pd.crosstab(df["Group"], df["____"])

# Plot a heatmap of the table with no color bar and using the BuGn palette
sns.heatmap(pd_crosstab, cbar=____, cmap="____", linewidths=____)

# Rotate tick marks for visibility
plt.yticks(rotation=0)
plt.xticks(rotation=90)

#Show the plot
plt.show()
plt.clf()
Code bewerken en uitvoeren