2020年9月20日日曜日

Jupyter上でChartifyを使用してヒストグラムを表示する

Jupyter上でChartifyを使用してヒストグラムを表示するには、以下のサンプルのようにhistogramを使用します。

サンプルコード

import chartify
import pandas as pd

chart_data = chartify.examples.example_data()
print(chart_data)

ch = chartify.Chart(blank_labels=True, y_axis_type='density')
ch.set_title("ヒストグラムサンプル")
ch.plot.histogram(data_frame=chart_data, values_column='total_price', bins=20)
ch.show()

〇出力画像

インストール方法

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

関連情報

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

0 件のコメント:

コメントを投稿