Seaborn で正規分布をプロットする方法 (例付き)
次のメソッドを使用して、Python のSeabornデータ視覚化ライブラリで正規分布をプロットできます。
方法 1: 正規分布ヒストグラムをプロットする
sns. displot (x)
方法 2: 正規分布曲線をプロットする
sns. displot (x, kind=' kde ')
方法 3: 曲線を使用して正規分布ヒストグラムをプロットする
sns. displot (x,kde= True )
次の例は、各メソッドを実際に使用する方法を示しています。
例 1: 正規分布ヒストグラムのプロット
次のコードは、Seaborn で正規分布ヒストグラムをプロットする方法を示しています。
import numpy as np import seaborn as sns #make this example reproducible n.p. random . seeds (0) #create data x = np. random . normal (size=1000) #create normal distribution histogram sns. displot (x)
例 2: 正規分布曲線を描く
次のコードは、Seaborn で正規分布曲線をプロットする方法を示しています。
import numpy as np import seaborn as sns #make this example reproducible n.p. random . seeds (0) #createdata x = np. random . normal (size=1000) #create normal distribution curve sns. displot (x, kind=' kde ')
例 3: 正規分布ヒストグラムを曲線でプロットする
次のコードは、Seaborn 曲線を使用して正規分布ヒストグラムをプロットする方法を示しています。
import numpy as np import seaborn as sns #make this example reproducible n.p. random . seeds (0) #create data x = np. random . normal (size=1000) #create normal distribution curve sns. displot (x,kde= True )
追加リソース
次のチュートリアルでは、Seaborn で他の一般的な操作を実行する方法を説明します。
単一の Figure 内に複数の Seaborn プロットを作成する方法
Seaborn で面グラフを作成する方法
Seaborn で円グラフを作成する方法