Hi Fam,
below is a copy of my guided project, constructive criticism is welcomed. Also advise and recommendation on how to become a better data scientist is welcomed. I will like to receive an assessment on the quality of the project and areas to be improved on.
Basics.ipynb (173.5 KB)
Click here to view the jupyter notebook file in a new tab
1 Like
congratulations @dazzletrail ,for having completing the project, it’s well presented only that most of your outputs starting from cell[14]
contains SettingWithCopyWarning
.This indeed is a problem to many including myself, but can you apply the copy()
before you working on these dataframes that produces such errors.
for example in cell[14]
;do this
dete_resignations = dete_resignations.copy()
dete_resignations['cease_date'] = dete_resignations['cease_date'].astype('float')
dete_resignations['cease_date'].value_counts()
Hope this was important,.
1 Like
thanks for your comment. it was very helpful.
1 Like