Skip to content

springboard-curriculum/DataScienceGuidedCapstone

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DataScienceGuidedCapstone

Hello students! Welcome to the Data Science Guided Capstone!

Getting Started

Start by forking this repository to your personal GitHub account and cloning the fork to your local machine.

Note: If forking and cloning a repo is new to you and/or github is new to you then it is strongly suggested to use GitHub desktop and follow instructions in the docs here.

From https://github.com/springboard-curriculum/DataScienceGuidedCapstone press the green "code" dropdown and then press "Open with GitHub Desktop". This will fork the springboard repository into your own github account and then clone that fork to your local machine - it is in here that you will do your work and push your changes back to your fork of the repo in your own github account.

You will find the notebooks in the Notebooks/ directory.

You will find instructions on how to complete and submit each step of the Guided Capstone in the course materials. Each subunit will focus on one step of the Capstone, corresponding to a step of the Data Science Method. Find the Jupyter Notebook corresponding to the subunit you are working on, and open it. Follow along as you are guided through the work, and fill in the blanks!

When you are done with the notebook, push the changes to your personal GitHub account.

Pipenv

The Pipefile has all the python dependencies and requirements you should need. So you can use Pipenv is you want to create a seperate python enviornment for this project.

To install pipenv see here.

To create the env and install the required libraries (once you have pipenv installed) you can just do:

pipenv install

Then to activate the env and launch jupyter from this env you can do something like the below two commands:

pipenv shell
jupyter lab