2020年9月10日木曜日

Jupyter上でChartifyを使用して横方向積上げ棒グラフを表示する

Jupyter上でChartifyを使用して横方向積上げ棒グラフを表示するには、以下のサンプルのようにbar_stackedを使用します。

サンプルコード

import chartify

data = chartify.examples.example_data()
bar_data = data.groupby(['country', 'fruit'])[['quantity']].sum().reset_index()
print(bar_data)

ch = chartify.Chart(blank_labels=True, y_axis_type='categorical')
ch.set_title("横方向積上棒グラフ")
ch.plot.bar_stacked(data_frame=bar_data, categorical_columns='country', numeric_column='quantity',stack_column='fruit')
ch.show()


〇出力画像


インストール方法

Jupyterの仮想環境で以下のコマンドを実行します。
pipenv install chartify

関連情報

・Chartifyのgithubリポジトリ
https://github.com/spotify/chartify

0 件のコメント:

コメントを投稿