feature: add algorithm notes and linter stuff

This commit is contained in:
2026-05-28 15:47:05 +02:00
parent 1410c6c990
commit 5e4151d261
2 changed files with 52 additions and 1 deletions
+4 -1
View File
@@ -138,6 +138,7 @@ def e42_clean_names(df: pd.DataFrame) -> pd.DataFrame:
df.info()
return df
if __name__ == "__main__":
data = load()
# Data Frame
@@ -158,4 +159,6 @@ if __name__ == "__main__":
data = e42_clean_names(data)
# E4.3 Standardisieren: kein Bedarf (modellabhängig, gehört ans Training)
data.to_csv(OUT, index=False)
print(f"Fertig: {OUT} geschrieben ({data.shape[0]} Zeilen, {data.shape[1]} Spalten)")
print(
f"Fertig: {OUT} geschrieben ({data.shape[0]} Zeilen, {data.shape[1]} Spalten)"
)