Exercise: Trellis Chart, Column Chart, and Stacked Column Chart
Explore how to create trellis, column, and stacked column charts using Python Altair. This lesson helps you understand dataset representation, chart layering, conditional formatting, and interactive selection tools to visualize download and upload speeds effectively.
We'll cover the following...
We'll cover the following...
Consider the following dataset describing the average download/upload speed in European countries from 2019 to 2022:
In the following terminal, represent it through a trellis chart and column chart:
Also, represent the dataset through a stacked column chart:
Solution: trellis chart
We’ll use the mark_line() function to ...