Bokeh figure doesn't show
问题 I am new to python. I tried the example given in here http://docs.bokeh.org/en/latest/docs/gallery/color_scatter.html with my own dataset, which looks like this Unnamed: 0 fans id stars 0 0 69 18kPq7GPye-YQ3LyKyAZPw 4.14 1 1 1345 rpOyqD_893cqmDAtJLbdog 3.67 2 2 105 4U9kSBLuBDU391x6bxU-YA 3.68 3 3 2 fHtTaujcyKvXglE33Z5yIw 4.64 4 4 5 SIBCL7HBkrP4llolm4SC2A 3.80 here's my code: import pandas as pd from bokeh.plotting import figure, show, output_file op = pd.read_csv('FansStars.csv') x = op.stars