Learn like a baby - Bokeh for Visuals - 1
```
#install bokeh
pip3 install bokeh==0.13.0
```
1 - Getting the look and feel
lets do something for quick visualization and get the look and feel
#Making a basic Bokeh line graph
#importing Bokeh
import bokeh
#prepare some data
x = [1,2,3,4,5]
y ...
synackwithraj.hashnode.dev3 min read