6
6

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.

seabornで個別に作成したAxesオブジェクトを使う

Posted at

matplotlibをラップしたseabornですが、seaborn.distplot などの描画関数はmatplotlibのインポート時にグローバルに作成するAxesオブジェクトをデフォルトで参照します。

以下のようにaxキーワード引数に個別作成したAxesオブジェクトを渡すことで、こちらを参照するようになります。

import matplotlib.pyplot as plt
import seaborn as sns

fig = plt.figure()
ax1 = fig.add_subplot(1, 1, 1) # 明示的にAxesを作成する
sns.distplot(data, ax=ax1) # ax1を参照するようにする

ちなみに、デフォルトの動作は以下と等価です。plt.gca()は、(現在アクティブな)グローバルに参照されるAxesオブジェクトを返します。

sns.distplot(data, ax=plt.gca())
6
6
0

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
6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?