Bokeh と Holoviewsで月食グラフをhtmlに変換
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
import pandas as pd import holoviews as hv from bokeh.io import output_file, save, show hv.extension('bokeh', 'matplotlib') eclipses = pd.read_csv('../data/eclipses_21C.csv', parse_dates=['date']) eclipses.head() hv.Curve(eclipses) curve= hv.Curve(eclipses) renderer = hv.renderer('bokeh') # rendererで保存 renderer.save(curve, 'graph') # boken形式に変換 plot = renderer.get_plot(curve).state # graph.htmlの名でhtmlファイルを出力 output_file('graph.html') # プロット show(plot) |
コメントを残す