Medical Insurance Portfolio Project - My First Project!

About half way through the Data Science Foundations Skill Path and just finished my first project! I know the code is probably not the most efficient, some might not even be correct, but any advice is appreciated!

Congrats on completing the project.

A couple things to consider:

  • you should include a readme file with the project. Just a brief summary of the data (including where the data set came from), and what your goals are with it/what you plan on exploring in it. While the viewer gets more of an idea of what you’re doing further down in the notebook, it’s good to have that up front so your audience knows what the project is about.

  • you can limit the number of line of code output in Jupyter Notebook (b/c it’s difficult to look at and to scroll through a wall of text output. You can add this extension to the notebook at the top of the file when you import the csv library like so:

from notebook.services.config import ConfigManager
cm = ConfigManager().update('notebook', {'limit_output': 50})

See: Limit Output — jupyter_contrib_nbextensions 0.5.0 documentation