team-10/venv/Lib/site-packages/altair/examples/multiple_marks.py

18 lines
344 B
Python
Raw Normal View History

2025-08-02 02:00:33 +02:00
"""
Multiple Marks
==============
This example demonstrates creating a single chart with multiple markers
representing the same data.
"""
# category: other charts
import altair as alt
from vega_datasets import data
source = data.stocks()
alt.Chart(source).mark_line(point=True).encode(
x='date:T',
y='price:Q',
color='symbol:N'
)