4
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

matplotlibで時系列データをプロットする際の軸の設定+おまけ

Last updated at Posted at 2019-05-18

前略

時系列データをmatplotlibでプロットするとき、軸のフォーマット調整で結構苦労します。サンプルを残しておきます。

手順

時刻の列を折れ線グラフのx軸に使用する

折れ線グラフの場合、時系列の列をそのままx軸に使用できます。ただしフォーマットがmatplotlibが自動で調節して、意図しない表示になることがあります。LocatorとFormatterで軸の表示を設定します。

import matplotlib.pyplot as plt
import matplotlib as mpl
import pandas as pd
import io

# データ読み込み
data = """date,val_1,val_2
2018-11-01 09:00:00,65,d g
2018-11-01 09:01:00,26,e h
2018-11-01 09:02:00,47,h w
2018-11-01 09:03:00,20,k d
2018-11-01 09:04:00,65,8 d
2018-11-01 09:05:00,4,l d
2018-11-01 09:06:00,31,w d
2018-11-01 09:07:00,21,s s
2018-11-01 09:08:00,98,a b
2018-11-01 09:09:00,48,f f
2018-11-01 09:10:00,18,g 4
2018-11-01 09:11:00,86,s f"""
df = pd.read_csv(io.StringIO(data), parse_dates=[0])

# グラフ作成
plt.figure(figsize=(8,4))
plt.plot(df['date'], df['val_1'])

# ロケータで刻み幅を設定
xloc = mpl.dates.MinuteLocator(byminute=range(0,60,1))
plt.gca().xaxis.set_major_locator(xloc)

# 時刻のフォーマットを設定
xfmt = mpl.dates.DateFormatter("%H:%M")
plt.gca().xaxis.set_major_formatter(xfmt)

plt.show()

image.png

時刻の列を棒グラフのx軸に使用する

plt.barの第一引数は棒グラフの棒の左端座標を表します。時系列データを直接使用すると座標がおかしくなってしまいます。

import matplotlib.pyplot as plt
import matplotlib as mpl
import pandas as pd
import io

%matplotlib inline


data = """date,val_1,val_2
2018-11-01 09:00:00,65,d g
2018-11-01 09:01:00,26,e h
2018-11-01 09:02:00,47,h w
2018-11-01 09:03:00,20,k d
2018-11-01 09:04:00,65,8 d
2018-11-01 09:05:00,4,l d
2018-11-01 09:06:00,31,w d
2018-11-01 09:07:00,21,s s
2018-11-01 09:08:00,98,a b
2018-11-01 09:09:00,48,f f
2018-11-01 09:10:00,18,g 4
2018-11-01 09:11:00,86,s f"""


df = pd.read_csv(io.StringIO(data), parse_dates=[0])
x = range(len(df['date']))

plt.figure(figsize=(8,4))
plt.bar(df['date'], df['val_1'])

image.png

そこでx軸を整数値にとって、あとから時刻目盛りを時刻文字列で置き換えます。

import matplotlib.pyplot as plt
import matplotlib as mpl
import pandas as pd
import io

%matplotlib inline


data = """date,val_1,val_2
2018-11-01 09:00:00,65,d g
2018-11-01 09:01:00,26,e h
2018-11-01 09:02:00,47,h w
2018-11-01 09:03:00,20,k d
2018-11-01 09:04:00,65,8 d
2018-11-01 09:05:00,4,l d
2018-11-01 09:06:00,31,w d
2018-11-01 09:07:00,21,s s
2018-11-01 09:08:00,98,a b
2018-11-01 09:09:00,48,f f
2018-11-01 09:10:00,18,g 4
2018-11-01 09:11:00,86,s f"""


df = pd.read_csv(io.StringIO(data), parse_dates=[0])
x = range(len(df['date']))

plt.figure(figsize=(8,4))
plt.bar(x, df['val_1'])

xloc = mpl.dates.MinuteLocator(byminute=range(0,60,1))
xfmt = mpl.dates.DateFormatter("%H:%M")
plt.gca().xaxis.set_major_locator(xloc)
plt.gca().xaxis.set_major_formatter(xfmt)

plt.xticks(x, [pd.to_datetime(str(date)).strftime("%H:%M") for date in df['date']], rotation=45)
plt.show()

image.png

草々

matplotlibの棒グラフは使いにくいですねえ。

4
8
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?