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
import pandas as pd | |
import numpy as np | |
# Veri çerçevesi oluşturma | |
data = pd.DataFrame({ | |
'isim': ['Ali', 'Ayşe', 'Fatma', 'Mehmet'], | |
'yaş': [25, np.nan, 30, np.nan] | |
}) | |
# Eksik değerleri "yaş" sütununun ortalaması ile doldurma |
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
data = pd.DataFrame({ | |
'isim': ['Ali', 'Ayşe', 'Fatma', 'Mehmet'], | |
'cinsiyet': ['Erkek', 'K', 'Kadın', 'E'] | |
}) | |
# Tutarsız değerleri "Erkek" veya "Kadın" olarak birleştirme | |
data['cinsiyet'] = data['cinsiyet'].replace({'E': 'Erkek', 'K': 'Kadın'}) | |
print(data) |