.. This document is auto-generated by the altair-gallery extension. Do not modify directly. .. _gallery_strip_plot: Strip Plot ----------------- This example shows the relationship between horsepower and the numbver of cylinders using tick marks. .. altair-plot:: :code-below: import altair as alt from vega_datasets import data source = data.cars() alt.Chart(source).mark_tick().encode( x='Horsepower:Q', y='Cylinders:O' ) .. toctree:: :hidden: