Glossary

Add axis labels with units

specifically `ax.set_ylabel("Temperature Anomaly (°C)")`. 8. **Add annotations** on the 2016 and 2023 record years using `ax.annotate(...)`. 9. **Add a horizontal reference line** at zero with `ax.axhline(0, color="gray", linewidth=0.8, linestyle="--")`. 10. **Add light horizontal gridlines** with `

Learn More

Related Terms