Trying to plot sample plot with vincent in IPython:
import vincent
vincent.core.initialize_notebook()
list_data = [10, 20, 30, 20, 15, 30, 45]
bar = vincen
Following the comment from predicador37 worked for me as follows:
Upgrade to vincent version 0.4.4 with
pip install vincent==0.4.4
Insert the suggested initialize_notebook command, ie:
import vincent
vincent.core.initialize_notebook()
bar = vincent.Bar(multi_iter1['y1'])
bar.axis_titles(x='Index', y='Value')
bar.display()
Success! I get the visualization inside the notebook.