Collection of materials to bring new members of SUSA @ Berkeley up to speed. Hosted by and maintained by the Statistics Undergrad Student Association (SUSA).
Each semester in Career Exploration, we cover a wide breadth of topics. This semester, we go over:
- Intro to Datahub and Career Exploration
- Python
- R
- Numpy/Pandas
- Tidyverse
- Linear Regression, Validation, Fitting
- The Bias Variance Tradeoff, Regularization
- Kaggle 1 Data Cleaning/Visualization and Linear Models
- Kaggle 2 Decision Trees, Random Forest, Boosting
- Kaggle 3 Neural Networks
- Kaggle 4 Recap
Assistance is welcome. In order to modify this repo, you first need to know your organization status. You can be
- In the susa-org organization
- In susa-org and a member of the crashcourse team w/i the org
- Not in susa-org
Your steps for contributing are:
- Clone this repo
# Navigate to your directory to store SUSA repositories.
git clone https://github.com/SUSA-org/Fall-2019-Career Exploration.git
- Create a new branch for your work
git checkout -b yourbranchnamehere
- Upon making your edits, push onto working branch
git add changedfile1 [changedfile2 ...]
git commit -m "Description of change here"
git merge
- directly pull/push to this repo
If you are having trouble pulling, pushing to the repo, then it may be because the upstreams are set to be the actual repo. To confirm this, you can run git remote -v
and look for (upstream) listed somewhere. Then you just run git pull upstream [working_branch]
and git push upstream [working_branch]
(from your master branch).
Your steps for contributing are:
- Fork this repo
- Clone your fork (www.github.com/youracct/Fall-2018-Career-Exploration
- Set your remotes
This means setting up your local version of the repo to be able to pull directly from the actual repo. This can be done by running the following command from within your local git repo:
git remote add upstream https://github.com/SUSA-org/Fall-2018-Career-Exploration.git
The link may be wrong, but otherwise it should work. Then, upon running
git remote -v
You should see "upstream https://...." listed.
- Pull from the upstream, push to origin
git pull upstream BRANCH # BRANCH is usually master
git push # This will push to your local version, and will push to whatever branch you're working on
- Create a pull request (go to your github account's fork, click pull request, compare forks)