Open
Description
Prerequisites
I've searched a lot and checked and asked many times, see:
vega/altair#765
#1771
Description
I'm in hydrogen 2.14 / atom 1.44 / Ubuntu 18.04 / python 3.7 / altair 4 and I cannot plot images with this code:
import altair as alt
from vega_datasets import data
cars = data.cars()
fig = alt.Chart(cars).mark_point().encode(
x='Horsepower',
y='Miles_per_Gallon',
color='Origin',
).interactive()
fig
-- fig.to_dict() data are in!
I only get an empty square with no image.
In Jupyter it is working properly.
What should I do? Which versions combo does work?
Thanks