Technical Test to evaluate my skills in Python with Pandas Library
- Python Solution
- Results in path './dowlaods' that will be created.
- Scrapping with selenium: headless mode, untrack driver automations
- Read Excel data in Victims.zip: Use zipfile.ZipFile
- Select crimes against propety without:
- totals: Remove column using
df.drop('column_name',axis=1)
- index: Use
df.to_csv('file_name',index=False)
- footer: Use
df.dropna()
removes rows with NaN values
- totals: Remove column using