1
2

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でグラフ描画できなかった時の試行錯誤

Posted at

#seabornを使えばグラフが描けるらしいぞ?からの試行錯誤

初心者の例にもれず、Jupyter notebookで楽しくデータをいじっていたら、なんとも微妙なハマり方をしたので、備忘録として書いておく。
出発点はここから

import seaborn as sns
sns.set() 

iris = sns.load_dataset('iris')
sns.jointplot('sepal_width', 'petal_length', data=iris)

最後の行を書いて実行すればグラフが表示されるものと思っていたが、なにやら

<seaborn.axisgrid.JointGrid at 0x1a20a0a828>

なるメッセージだけが表示されるのみであった。いくつかググった結果、この場合は

import matplotlib.pyplot as plt  #もともとインポートしていなければ書く

plt.show()

で表示されるようだ。(当たり前?)
sns.show()とかで表示できたらわかりやすい気がする、、、

1
2
2

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?