パンダの時系列プロットに垂直線をどのようにプロットしますか?


81
  • vlinesPandasシリーズプロットで垂直線()をどのようにプロットしますか?
  • パンダを使ってローリング平均などをプロットしていますが、重要な位置を縦線でマークしたいと思います。
  • vlinesこれを達成するために、または同様のものを使用することは可能ですか?
  • この場合、x軸はdatetimeです。

回答:


110
plt.axvline(x_position)

これは、(標準プロット書式設定オプションをとりlinestlyecolor電気ショック療法)

(doc)

axesオブジェクトへの参照がある場合:

ax.axvline(x, color='k', linestyle='--')

3
はい、axesオブジェクトax = s.plot()にアクセスできます。ここで、sはpandas.Series
joao

42

時間軸があり、パンダをpdとしてインポートしている場合は、次を使用できます。

ax.axvline(pd.to_datetime('2015-11-01'), color='r', linestyle='--', lw=2)

複数行の場合:

xposition = [pd.to_datetime('2010-01-01'), pd.to_datetime('2015-12-31')]
for xc in xposition:
    ax.axvline(x=xc, color='k', linestyle='-')

私は3日間のプロットを持っていて、私がしたのは:xposition = [pd.to_datetime('01/04/2016'), pd.to_datetime('02/04/2016'),pd.to_datetime('03/04/2016')]それからfor xc in xposition: ax.axvline(x=xc, color='k', linestyle='-')。そして私は得た:ValueError: ordinal must be >= 1.。どうしましたか?
faCoffee 2018

@FaCoffee、あなたの日付は答えで与えられた例とは異なる形式ですが、それがどのように違いを生むかはわかりません。
rufusVS 2018年

毎日の時系列列プロットに垂直線をプロットしたいのですが、何か助けがありますか?
ikbelbenab19年

12

DataFrameプロット関数はAxesSubplotオブジェクトを返し、その上に必要な数の行を追加できます。以下のコードサンプルをご覧ください。

%matplotlib inline

import pandas as pd
import numpy as np

df = pd.DataFrame(index=pd.date_range("2019-07-01", "2019-07-31"))  # for sample data only
df["y"] = np.logspace(0, 1, num=len(df))  # for sample data only

ax = df.plot()
# you can add here as many lines as you want
ax.axhline(6, color="red", linestyle="--")
ax.axvline("2019-07-24", color="red", linestyle="--")

ここに画像の説明を入力してください


3

matplotlib.pyplot.vlines

  • 時系列の場合、軸の日付は文字列ではなく、適切な日時オブジェクトである必要があります。
  • 単一または複数の場所を許可します
  • yminymaxは、のパーセントとしてではなく、特定のy値として指定されますylim
  • axesようなもので参照しているfig, axes = plt.subplots()場合はplt.xlinesaxes.xlines

plt.plot()sns.lineplot()

from datetime import datetime
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns  # if using seaborn

plt.style.use('seaborn')  # these plots use this style

# configure synthetic dataframe
df = pd.DataFrame(index=pd.bdate_range(datetime(2020, 6, 8), freq='1d', periods=500).tolist())
df['v'] = np.logspace(0, 1, num=len(df))

# plot
plt.plot('v', data=df, color='magenta')

y_min = df.v.min()
y_max = df.v.max()

plt.vlines(x=['2020-07-14', '2021-07-14'], ymin=y_min, ymax=y_max, colors='purple', ls='--', lw=2, label='vline_multiple')
plt.vlines(x=datetime(2021, 9, 14), ymin=4, ymax=9, colors='green', ls=':', lw=2, label='vline_single')
plt.legend(bbox_to_anchor=(1.04, 0.5), loc="center left")
plt.show()

ここに画像の説明を入力してください

df.plot()

df.plot(color='magenta')

ticks, _ = plt.xticks()
print(f'Date format is pandas api format: {ticks}')

y_min = df.v.min()
y_max = df.v.max()

plt.vlines(x=['2020-07-14', '2021-07-14'], ymin=y_min, ymax=y_max, colors='purple', ls='--', lw=2, label='vline_multiple')
plt.vlines(x='2020-12-25', ymin=y_min, ymax=8, colors='green', ls=':', lw=2, label='vline_single')
plt.legend(bbox_to_anchor=(1.04, 0.5), loc="center left")
plt.show()

ここに画像の説明を入力してください

パッケージバージョン

import matplotlib as mpl

print(mpl.__version__)
print(sns.__version__)
print(pd.__version__)

[out]:
3.3.1
0.10.1
1.1.0


白いグリッドで灰色の背景をどのように追加しましたか?コードからそれを把握することはできません
blkpingu

1
plt.style.use('seaborn')
トレントンマッキニー
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.