Final information

Final

  • When: Friday, August 15th at 9:10A to 10A
  • Where: 145 Moffitt
  • Bring: Your laptop w/ all the software installed/configured
  • Recommended: Refcard

What to know

  • filesystem hierarchy
  • Bash
    • ls, cd, pwd
  • Git
  • information: status, log
  • virtous cycle: pull, add, commit, (pull,) push
  • R
    • ref card
    • getting info
    • data ...
more ...


Midterm information

Midterm

  • When: Wednesday, July 9 at 9:10A to 10A
  • Where: 145 Moffitt
  • Bring: Your laptop w/ all the software installed/configured
  • Recommended: Refcard

What to know

  • filesystem hierarchy
  • Bash
    • ls, cd, pwd
  • Git
  • information: status, log
  • virtous cycle: pull, add, commit, (pull,) push
  • R
    • ref card
    • getting info
    • data ...
more ...


Section Notes - 4

Apply functions in R

R's apply functions are the efficient way to perform repeated operations on vectors of your data. There are many variants of the "apply" statement as well as wrappers for special cases of these functions easier. These notes will cover the apply statements and wrappers that ...

more ...



Git practice

Today you will be practicing working with Git.

  1. Create a new Git repository using git init and then adding GitHub as a remote or using GitHub to initialize a new repository and then cloning it.
  2. Create several text files with whatever text you wish and add/commit them to your ...
more ...

Section Notes - 3

Functions and Unit Testing

Functions

Functions are an important tool for interacting with data in R. You're probably already familiar with the idea of functions from math classes. In R, we use functions to manipulate some input argument(s) and return some output arguments(s). You've already seen ...

more ...

Announcement (git workflow)

Here's a short summary of the basic workflow that we covered today. We'll be using it for homeworks, quizzez, etc. so it should start to come more naturally.

  1. Navigate to your stat133 directory (in Bash)
  2. Run the git pull command (in Bash)
  3. Make changes to the files (in ...
more ...