Wednesday, March 13, 2019

JupyterとPygalでグラフの背景色・プロット背景色を設定する

背景色・プロット背景色を指定するには、以下のサンプルのようにStyleのbackground, plot_backgroundを使用します。

%matplotlib inline
import pandas as pd
import pygal as pg
from pygal.style import Style
style1 = Style(
  background='#bbddff',
  plot_background='#88aadd'
)
chart = pg.Bar(height=300, style=style1)
df = pd.DataFrame({'Sales': [10,21,32]})
chart.x_labels = ['商品A', '商品B', '商品C']
chart.add('Sales', df['Sales'])
display({'image/svg+xml': chart.render(is_unicode=True)}, raw=True)

○出力画像


〇関連項目
VagrantでJupyter Lab、Pygalをインストールした仮想マシン(Ubuntu18.04)を構築する
http://serverarekore.blogspot.com/2019/03/vagrantjupyter-labpygalubuntu1804.html

VagrantでJupyter Lab、Pygalをインストールした仮想マシン(Debian Stretch/9.6)を構築する
http://serverarekore.blogspot.com/2019/03/vagrantjupyter-labpygaldebian-stretch96.html

No comments: