Cara merencanakan distribusi normal di seaborn (dengan contoh)
Anda dapat menggunakan metode berikut untuk memplot distribusi normal dengan pustaka visualisasi data Seaborn dengan Python:
Metode 1: Plot histogram distribusi normal
sns. displot (x)
Metode 2: Gambarkan kurva distribusi normal
sns. displot (x, kind=' kde ')
Metode 3: Plot histogram distribusi normal dengan kurva
sns. displot (x,kde= True )
Contoh berikut menunjukkan cara menggunakan masing-masing metode dalam praktik.
Contoh 1: Merencanakan Histogram Distribusi Normal
Kode berikut menunjukkan cara memplot histogram distribusi normal di 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)
Contoh 2: Menggambar Kurva Distribusi Normal
Kode berikut menunjukkan cara memplot kurva distribusi normal di 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 ')
Contoh 3: Merencanakan Histogram Distribusi Normal dengan Kurva
Kode berikut menunjukkan cara memplot histogram distribusi normal dengan kurva 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 )
Sumber daya tambahan
Tutorial berikut menjelaskan cara melakukan operasi umum lainnya di Seaborn:
Cara Membuat Beberapa Plot Seaborn dalam Satu Gambar
Cara Membuat Bagan Area di Seaborn
Cara Membuat Diagram Lingkaran di Seaborn