[[Python]] *参考 [#k3e614c9] -[[多様なサンプルを日本語で紹介>http://stanford.edu/~mwaskom/software/seaborn/examples/index.html]] -[[Matplotlib>http://bicycle1885.hatenablog.com/entry/2014/02/14/023734]] *概要 [#i3c1f961] -import seaborn as snsとつけるだけでmatplotlibが何もかも美しくなる魔法のライブラリ -https://github.com/hamko/sample/tree/master/seaborn -公式のサンプルはすべて画像が表示されない。すべてのサンプルの後に以下を付けなければならない。あるいは%matplotlib inlineというコードを先頭に書くことでshow無しでもプロットが表示されます。 sns.plt.axis("off") sns.plt.show() *memo [#a07fedfc] -[[python seaborn紹介>http://qiita.com/hik0107/items/7233ca334b2a5e1ca924]] -http://myenigma.hatenablog.com/entry/2015/10/09/223629 -[[APIのドキュメントが充実>http://stanford.edu/~mwaskom/software/seaborn/api.html]] -[[pythonで非線形関数最適化>http://qiita.com/hik0107/items/9bdc236600635a0e61e8]] -[[pythonでスライダー>http://www.python-izm.com/contents/gui/slider.shtml]] *ノウハウ [#s615a0cf] --[[複数のヒートマップに一つのカラーバー>http://stackoverflow.com/questions/28356359/one-colorbar-for-seaborn-heatmaps-in-subplot]] -[[複数のaxをfor文で処理>http://stackoverflow.com/questions/28356359/one-colorbar-for-seaborn-heatmaps-in-subplot]] -[[for文の回数を数える>http://stackoverflow.com/questions/28356359/one-colorbar-for-seaborn-heatmaps-in-subplot]] --for i, ax in enumerate(axn.flat): |