Lab 01: Setup, RMarkdown

Welcome!

Welcome to STAT 133! I’ll be your uGSI, Jakob Sorensen.

  • Contact: jakobsorensen@berkeley.edu

  • My Sections:

    • 11 AM to 1 PM in Evans 340

    • 3 PM to 5 PM in Evans 340

  • Office Hours: TBD

Expectations

  • Weekly Lab (13 total)
  • Timed Quizzes (2 total – via bCourses)
  • Biweekly1 – every 2 weeks – Homework (6 total)
  • Final Exam

Our Lab

  • For the first 15-40 minutes, I’ll lecture briefly on select topics from the week’s material and/or we’ll solve a few challenges together.

  • Afterwards, you are free to work on the lab, and I’m available to help.

My Notes

I’ll be hosting the materials I create for the course at the following website:

You can also find my materials from STAT 33B, if you’re interested.

Installing R and RStudio

Please install R and RStudio now if you haven’t already.

RStudio Demo

Separate window.

Demo in separate window.

RMarkdown

RMarkdown (.Rmd) is file type that allows us to merge,

  • Formatted written material,
  • and R code

into a single document.

This presentation is using a variant of RMarkdown!

This is RMarkdown?

## RMarkdown

RMarkdown (``.Rmd``) is file type that allows us to merge,

-   Formatted written material,
-   and **R** code

into a single document.

RMarkdown - Basic Formatting

Software like Microsoft Word and Google Docs hides the underlying format representation.

In a markup language, we embed the formatting alongside the text.

An Example: HTML (HyperText Markup Language)

This is <b>bold!</b> But this is merely <i>emphasized!</i>

Another Example: LaTeX

This is \textbf{bold!} But this is merely \textit{emphasized!}

RMarkdown

This is **bold!** But this is merely _emphasized!_

Headers

Aren’t headers…

… just lovely?

## Headers

### Aren't headers...

#### ... just lovely?

\(N\) # characters denotes an \(Nth\) level header.

Font Face: Bold

I’m bold and uncontrolled!

## Font Face: **Bold**

I'm **bold** and **uncontrolled!**

Surrounding text with ** at each end makes it bold.

Font Face: Italics

Don’t eat that burger! Don’t eat that burger!

## Font Face: _Italics_

Don't eat _that_ burger! Don't _eat_ that burger!

Surrounding text with _ at each end italicizes it.

Font Face: Plain Text or Code

The variable x passed into function main.

## Font Face: ``Plain Text or Code``

The variable ``x`` passed into function ``main``.

Surrounding text with `` at each end makes it plain text (like code).

And more…

We can also embed lists, tables, images, and many other components!

Code Chunks

We include code in what we call code chunks. A basic example in this document:

```{r}
print("Hello, World!")

x <- 3
y <- 5
print(paste("x + y =", x + y))
```
[1] "Hello, World!"
[1] "x + y = 8"

Note that we’ve included the output of our code directly in the document.

Code Chunk: Plot Example

```{r}
plot(1:10, seq(10, 100, 10), type = "l", 
     xlab = "Time Spent Studying (Hours)", ylab = "Quiz Grade (%)")
```

Knitting

Going from the plain text format (.rmd) to a presentation format (.pdf, .html) is called knitting the document.

RMarkdown Demo

Separate window.