Seaborn の散布図関数 regplot() のポイント サイズを変更する方法 (Python) 質問する

Seaborn の散布図関数 regplot() のポイント サイズを変更する方法 (Python) 質問する

次のようにプロットするときにポイント サイズを設定できるようにしたいと思います。

sns.regplot(y=[1,3,4,2,5], x=[range(5)], data=df,
            marker='o', color='red')
plt.show()

皆さんは方法を知っていますか?

ベストアンサー1

regplot()これを行うには、次のように関数に引数を渡しますscatter_kws

import seaborn as sns
tips = sns.load_dataset('tips')
sns.regplot(x='total_bill', y='tip', data=tips,
            marker='o', color='red', scatter_kws={'s':2})

小さな点

sns.regplot(x='total_bill', y='tip', data=tips,
            marker='o', color='red', scatter_kws={'s':20})

大きなポイント

おすすめ記事