LoginSignup
2
5

More than 5 years have passed since last update.

Seabornの図のサイズ変更

Posted at

matplotlibのサイズ変更はよく載ってますが、seabornの日本語のモノはあまりなかったので、メモ。
jupyter notebook上で表示することを想定してます。

パッケージのバージョンは以下の通りです。

Python 2.7.12
matplotlib==1.5.1
seaborn==0.7.1

import matplotlib.pyplot as plt
import seaborn as sns
sns.set()
sns.set_context("notebook")
plt.figure(figsize=(20, 10))

デフォルトのサイズより大きくなりましたが、figsizeに入れる数値と図の大きさに関連がないので、もう少し調べたいです。

2
5
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
2
5