Basics.ipynb (145.3 KB)
Click here to view the jupyter notebook file in a new tab
1 Like
Hi @Scylla,
Congratulations on finishing this guided project.
There are a few things which you could have done differently.
To rename the column names, you can use multiple name changes within the {}
autos.rename(columns={
"yearOfRegistration" : "registration_year",
"monthOfRegistration" : "registration_month"}, inplace=True)
So you don’t actually need the while loop. Though it is a creative way of doing it.
I like how you have used percentage_gap_mean_mileage
to come to a conclusion. It would be great if you could summarise other conclusions as well in the last part. Altogether this is a good project. Happy learning.
2 Likes