seaborn
おまじない
import matplotlib.pyplot as plt
import seaborn as snsプロットの全体styleを変える
サイズの変更
fig = plt.figure(figsize=(10, 5), dpi=100)
# その後、各種プロットg = sns.lmplot(...)
g.fig.set_figheight(10)
g.fig.set_figwidth(20)タイトル付与
軸範囲設定
散布図
折れ線グラフ(lineplot)
replot(relational-plot)
累積度数分布(ECDF: Empirical Cumulative Distribution Function)
カーネル密度推定(KDE: Kernel Density Estimate)
heatmap
subplot
参考
Last updated