Glossary

Exercise 15-7 (key points):

The deviation matrix: `deviation = (revenue_matrix - 110000) / 110000` - `sns.heatmap(..., center=0)` ensures zero maps to the center of the diverging palette. - Format annotations with `f"{v:+.0%}"` to show the `+` sign for positive values.

Learn More

Related Terms