.. This document is auto-generated by the altair-gallery extension. Do not modify directly. .. _gallery_bubble_plot: Bubble Plot ----------------- This example shows how to make a bubble plot. .. altair-plot:: :code-below: import altair as alt from vega_datasets import data source = data.cars() alt.Chart(source).mark_point().encode( x='Horsepower', y='Miles_per_Gallon', size='Acceleration' ) .. toctree:: :hidden: