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
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.
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.
Please install R and RStudio now if you haven’t already.
Separate window.
Demo in separate window.
RMarkdown (.Rmd
) is file type that allows us to merge,
into a single document.
This presentation is using a variant of RMarkdown!
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)
\(N\) #
characters denotes an \(Nth\) level header.
I’m bold and uncontrolled!
Surrounding text with **
at each end makes it bold.
Don’t eat that burger! Don’t eat that burger!
Surrounding text with _
at each end italicizes it.
Plain Text or Code
The variable x
passed into function main
.
Surrounding text with ``
at each end makes it plain text (like code
).
We can also embed lists, tables, images, and many other components!
We include code in what we call code chunks. A basic example in this document:
Note that we’ve included the output of our code directly in the document.
Going from the plain text format (.rmd
) to a presentation format (.pdf
, .html
) is called knitting the document.
Separate window.