-
-
Notifications
You must be signed in to change notification settings - Fork 68
Open
Labels
Description
I've encounterd a problem with pyvega and the Python print function.
The following example works, hence the figure is displayed correctly in the notebook:
import altair
altair.Chart(altair.load_dataset('movies')).encode(x='Production_Budget', y='IMDB_Rating')
If I print anything in this same cell, the figure output disappears:
import altair
print('foo')
altair.Chart(altair.load_dataset('movies')).encode(x='Production_Budget', y='IMDB_Rating')
Is this expected behavior?
Niels
Reactions are currently unavailable