Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

completed #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions Practice_Lab.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -12,40 +12,41 @@ knitr::opts_chunk$set(echo = TRUE)

First, let's make sure you know how to use R Markdown.

Make this text bold.
__Make this text bold.__

Make this text italicized.
_Make this text italicized._

Make these into a bullet point list:

Apples
Bananas
Potatoes
*Apples
*Bananas
*Potatoes

Make it so this chunk shows the plot, but not the source code:

```{r}
```{r, echo = FALSE}
plot(1:10)
```

Make it so this chunk shows the code, but not the output:

```{r}
```{r, results = "hide"}
2 + 2
```

Make it so the file can still knit even though this chunk has an error

```{r}
```{r, warning = FALSE}
2 + a
```

## Getting to know your classmates

1. Find someone in the class who has a different major than you. Tell us their name and why they chose that major.
I'm actually from Canada, I go to UBC so I can't unfortuantly.

2. Find someone who took Stat 331 from a different professor than you. Compare your experiences. Tell us their name and professor. List one or two things that you think you learned more about, and one or two things that they learned more about.

Cal Poly looks like it has a great statss department
3. Find someone in the class who does not share your birth month. Tell us their name and birthday, and use R to find out how many days apart your birthdays are.

4. Pick someone in the class who you don't already know. Ask them for a story of the strangest thing that ever happened in a class they took. Share their story (but not their name) here.
Expand Down