Change plot size in Altair

PHOTO EMBED

Sat Feb 05 2022 03:04:49 GMT+0000 (Coordinated Universal Time)

Saved by @jmbenedetto #python

alt.Chart(cars).mark_point().encode(
    x='Horsepower',
    y='Miles_per_Gallon',
    color='Origin'
).properties(
    width=800,
    height=300
)
content_copyCOPY

https://stackoverflow.com/questions/57695261/changing-the-size-of-altair-plot-renders-in-jupyter-notebook