small improvements and better handling of edge cases

This commit is contained in:
2026-06-20 19:50:51 +02:00
parent 612a7b774c
commit 77ea5271f2
6 changed files with 92 additions and 1003 deletions

View File

@@ -141,7 +141,7 @@
"df['Nachname'] = df['Nachname'].str.strip()\n",
"df['rower'] = df.apply(evaluate_rower,axis=1,args=('rower',))\n",
"df['Telefonnummer'] = df.apply(extract_tel,axis=1,args=('Telefonnummer',))\n",
"df['Foto'] = df['Foto'].str.replace(' ','-').fillna('-')"
"df['Foto'] = df['Foto'].fillna('-').str.replace(' ','-').fillna('-')"
]
},
{
@@ -277,7 +277,7 @@
],
"metadata": {
"kernelspec": {
"display_name": ".venv (3.13.7)",
"display_name": ".venv (3.14.4)",
"language": "python",
"name": "python3"
},
@@ -291,7 +291,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.13.7"
"version": "3.14.4"
}
},
"nbformat": 4,