mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-04-22 10:28:02 +00:00
16 lines
274 B
Python
16 lines
274 B
Python
"""
|
|
Simple Strip Plot
|
|
-----------------
|
|
A simple example of how to make a strip plot.
|
|
"""
|
|
# category: simple charts
|
|
import altair as alt
|
|
from vega_datasets import data
|
|
|
|
source = data.cars()
|
|
|
|
alt.Chart(source).mark_tick().encode(
|
|
x='Horsepower:Q',
|
|
y='Cylinders:O'
|
|
)
|