title: DS501 - Introduction to Data Science
theme: sudodoki/reveal-cleaver-theme
url: https://github.com/lxynox/DS501-BCSX.git
output: index.html
--
press
ESC
for slides overview
press
← ↑ → ↓
for slides navigation
OR
click on the navigation buttons on the slides
--
DS501 - WPI - 16Spring
- Silva, Dennis Steven
- Branden, Diniz
- Chuxin, Wei
- Xuanyu, Li
--
- Case 1 - Collecting Data From Twitter
- Case 2 - Analyzing Data From MovieLens
- Case 3 - Textual Analysis of Movie Reviews
- Case 4 - Data Science Shark Tank: Pitch Your Ideas
--
--
$ git clone <url> # clone from remote host and develop locally
$ git log --oneline --graph --decorate # briefly show repository's history logs
$ git status # check the status of current working tree
$ git add # add files to be tracked / for staging
$ git commit -m <commit-msg> # commit as history snapshots with meaningful message
$ git push origin # pushing to github( defaults to master )
$ git pull origin # feching and merging( defaults to master )
$ git remote show origin # show remote repository
--