与えられた金額と残りの残高のholoviewSを使用して、動的なプロットを作成したいと考えています。理想的には折れ線グラフまたは棒グラフで、カテゴリに基づいて選択できます
データ(df)は以下の通りです
ID Amount_Given Balance Interest Date_issues category Amount_Given_Band
1 200 0 15 20180102 A 0-200
2 700 500 25 20180203 B 500-1000
3 1500 705.50 45 20170603 A 1001-5000
4 20000 20000 200 20171231 C 10000-20000
以下はコードです
%%opts Curve [width=600 height=400 show_grid=True ] (color='indianred', alpha=0.5, line_width=1)
ds = hv.Dataset(df).sort(['Date_issues'])
ds.to(hv.Curve, 'Date_issues' ,'Amount_Given_Band', 'category')
しかし、私はエラーが発生します
IOPub data rate exceeded.
The notebook server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--NotebookApp.iopub_data_rate_limit`.
私はボケ拡張機能を使用しています