Ali Berens, Haibo Liu, Viraj Muthye, Ryan Williams, Fan Yang
Subject to Change
8:30 - 9:00 | Setup Help |
9:00 - 9:30 | Introduction |
9:30 - 10:30 | Shell I |
10:30 - 10:40 | Break |
10:40 - 12:00 | Shell II |
12:00 - 1:00 | Lunch |
1:00 - 2:30 | Version Control I |
2:30 - 2:40 | Break |
2:40 - 4:15 | Version Control II |
4:15 - 4:30 | Wrap up and Questions |
9:00 - 9:30 | Review / Questions |
9:30 - 10:40 | Intro to R I |
10:40 - 10:50 | Break |
10:50 - 12:00 | Intro to R II |
12:00 - 1:00 | Lunch |
1:00 - 2:30 | Computing best practices |
2:30 - 2:40 | Break |
2:40 - 4:15 | Group Exercise |
4:15 - 4:30 | Wrap up and Questions |
Bash is a commonly-used shell. Using a shell gives you more power to do more tasks more quickly with your computer.
The default shell in all versions of Mac OS X is bash,
so no need to install anything. You access bash from
the Terminal (found
in /Applications/Utilities
). You may want
to keep Terminal in your dock for this workshop.
Install Git Bash following these instructions. This gives you the Bash shell plus Git.
The default shell is usually bash but if not you can
get to bash by opening a terminal and
typing bash
. No need to install
anything.
When you're writing code, it's nice to have a text editor that is optimized for writing code, with features like automatic color-coding of key words.
We recommend Text Wrangler or Sublime Text.
Notepad++ is a popular free code editor for Windows.
Kate is one option for Linux users.
R is a free software environment for statistical computing and graphics.
Download the precompiled binary distributions of R from the Comprehensive R Archive Network (CRAN) and install following instructions.
We will also be using an R IDE (integrated development environment) called RStudio. To install RStudio, download the installer recommended for your machine.
Git is the most popular version control system, a system that records changes to a file or set of files over time so that you can recall specific versions later, in the scientific community.
Download the graphical OSX Git installer from Sourceforge and install following instructions.
Install Git Bash following these instructions. This gives you the Bash shell plus Git.
If you are on a Debian-based distribution like Ubuntu, try apt-get:
$ apt-get install git
If you're on Fedora, you can use yum:
$ yum install git-core