Created
February 25, 2024 13:35
-
-
Save zinzinzibidi/4185caaf905e807f4798d120107aabc9 to your computer and use it in GitHub Desktop.
Python ile Normal Dağılım Grafiği
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Kütüphaneleri import ediyoruz. | |
import pandas as pd | |
import matplotlib.pyplot as plt | |
import seaborn as sns | |
# boy-uzunluklari.csv dosyasını okutuyoruz ve sütun adını "boy-uzunluklari" yapıyoruz. | |
data = pd.read_csv('boy-uzunluklari.csv', header=None, names=['boy-uzunluklari']) | |
# Histogram grafiğinin stilini belirliyoruz. | |
sns.set(style="whitegrid") | |
# Histogram grafiğini çiziyoruz. sns (seaborn) ile histogram çizgisini oluşturuyoruz. | |
plt.figure(figsize=(10, 6)) | |
sns.histplot(data['boy-uzunluklari'], kde=True, color="#0A64A0", binwidth=5) | |
# Başlık ve eksen adlarını belirliyoruz. | |
plt.title('Boy Uzunlukları (Normal Dağılım Grafiği)') | |
plt.xlabel('Boy Uzunluğu') | |
plt.ylabel('Frekans') | |
# Grafiği çıktı hâline getiriyoruz. | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment