Open, save, and establish an R markdown document that includes a YAML header with your name, title, date and output as an html [1].
Include an R chunk that loads tidyverse
[1].
Please download the data you see above by accessing this link. Read it in as CSV data and
save it to an object named dat
. [3]
## Rows: 20 Columns: 3
## ── Column specification ──────────────────────────────────
## Delimiter: ","
## chr (1): sex
## dbl (2): mass, Fmax
##
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
dat_F <- dat %>% filter(sex=="Female")
dat_M <- dat %>% filter(sex=="Male")
dat_F %>%
ggplot(aes(mass,Fmax))+geom_point()
The relationship between bite force and mass is similar between males and females.