intial commit (forked from private repo)
This commit is contained in:
5
extracted_cells/cell7.py
Normal file
5
extracted_cells/cell7.py
Normal file
@ -0,0 +1,5 @@
|
||||
# Überprüfen auf fehlende Werte oder '?'
|
||||
for col in df.columns:
|
||||
missing_count = df[df[col] == '?'].shape[0]
|
||||
if missing_count > 0:
|
||||
print(f"Spalte '{col}' hat {missing_count} Einträge mit '?'")
|
||||
Reference in New Issue
Block a user