Skip to content

This the Fall 2018 repository for SUSA's Career Exploration committee!

Notifications You must be signed in to change notification settings

SUSA-org/Fall-2018-Career-Exploration

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fall 2018 Career Exploration Materials

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:

  1. Intro to Datahub and Career Exploration
  2. Python
  3. R
  4. Numpy/Pandas
  5. Tidyverse
  6. Linear Regression, Validation, Fitting
  7. The Bias Variance Tradeoff, Regularization
  8. Kaggle 1 Data Cleaning/Visualization and Linear Models
  9. Kaggle 2 Decision Trees, Random Forest, Boosting
  10. Kaggle 3 Neural Networks
  11. Kaggle 4 Recap

Contributing to This Repository

Assistance is welcome. In order to modify this repo, you first need to know your organization status. You can be

  1. In the susa-org organization
  2. In susa-org and a member of the crashcourse team w/i the org
  3. Not in susa-org

If you are in the susa-org and in the crashcourse team (2)

Your steps for contributing are:

  1. Clone this repo
# Navigate to your directory to store SUSA repositories.
git clone https://github.com/SUSA-org/Fall-2019-Career Exploration.git
  1. Create a new branch for your work
git checkout -b yourbranchnamehere
  1. Upon making your edits, push onto working branch
git add changedfile1 [changedfile2 ...]
git commit -m "Description of change here"
git merge  
  1. 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).

If you are not in the susa-org organization, or you are just a general member (1 or 3)

Your steps for contributing are:

  1. Fork this repo
  2. Clone your fork (www.github.com/youracct/Fall-2018-Career-Exploration
  3. 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.

  1. 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
  1. Create a pull request (go to your github account's fork, click pull request, compare forks)

About

This the Fall 2018 repository for SUSA's Career Exploration committee!

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published