Search
Notebook 1
import altair as alt
from vega_datasets import data

Some plot

source = data.cars()

alt.Chart(source).mark_circle(size=60).encode(
    x='Horsepower',
    y='Miles_per_Gallon',
    color='Origin',
    tooltip=['Name', 'Origin', 'Horsepower', 'Miles_per_Gallon']
).interactive()

Some conclusion

  • Lots of conclusions