2020年9月16日水曜日

Chartifyを使用した折れ線グラフの線を点線や破線に設定する

Chartifyを使用した折れ線グラフの線を点線や破線に設定するには、以下のサンプルのようにline_dashを使用します。
dashedで破線・dottedで点線になります。

サンプルコード

import chartify

data = chartify.examples.example_data()
chart_data = data.groupby(['country', 'date'])[['quantity']].sum().reset_index().query('country in ("JP")')
print(chart_data)

ch = chartify.Chart(blank_labels=True, x_axis_type='datetime', y_axis_type='linear')
ch.set_title("折れ線グラフサンプル")
ch.plot.line(data_frame=chart_data, x_column='date', y_column='quantity', color_column='country', line_dash='dotted')
ch.show()

〇出力画像

インストール方法

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

関連情報

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

0 件のコメント:

コメントを投稿