I WOULD LOVE TO KNO WHERE I SHOULD IMPROVE ON
Learn data science with Python and R projects?
path=2&slug=data-scientist
Basics.ipynb (241.5 KB)
Click here to view the jupyter notebook file in a new tab
I WOULD LOVE TO KNO WHERE I SHOULD IMPROVE ON
Learn data science with Python and R projects?
path=2&slug=data-scientist
Basics.ipynb (241.5 KB)
Click here to view the jupyter notebook file in a new tab
Hello @chidubemnwandu19,
Welcome to the community and good job on submitting your first project!
Just a couple suggestions:
print(data[:5])
index = 0
for row in data:
data[index] = row[:-1]
index +=1
print(data[:3])
Try to clean up the cells and the notebook by deleting empty cells and removing empty spaces for cells that do have code.
You should consider adding some text too, like an introduction, body, and summary to describe your project and explain what it is all about; just a couple paragraphs or sentences here and there will help.
Otherwise, good effort and keep it up!
Shaun