R教学课件

2023-09-07

1 Setup

Presentations by Tom Mock

代码
library(tidyverse)

This code computes the answer to one plus one, change it so it computes two plus two:

2 Slide one

代码
mtcars %>%
  ggplot(aes(x = mpg,
             y = disp)) +
  geom_point()

2 Slide one

图 1: To show mtcars dat0

2.1 mtcars second

代码
mtcars %>%
  ggplot(aes(x = mpg,
             y = disp)) +
  geom_point()

2.1 mtcars second

图 2: To show mtcars dat1

3 Slide two

代码
mtcars %>%
  ggplot(aes(x = mpg,
             y = disp)) +
  geom_point()

3 Slide two

图 3: To show mtcars dat2

4 Slide three

代码
mtcars %>%
  ggplot(aes(x = mpg,
             y = disp)) +
  geom_point()

4 Slide three

图 4: To show mtcars dat3

5 Slide four

代码
mtcars %>%
  ggplot(aes(x = mpg,
             y = disp)) +
  geom_point()

5 Slide four

图 5: To show mtcars dat4

6 Video Slide

7 End

Thank you!