Skip to content
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
2 changes: 1 addition & 1 deletion intro-to-r-bioc/L1.2-tidy-r-intro.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ expects the data as the second argument. To adapt `t.test()` for use,
we need to explicitly indicate that the data should be the second
argument. One way of doing this is to use the special symbol `.` to
represent the location of the incoming data, invoking `t.test(age ~
sex, data = .)`:
sex, data = _)`:

```{r, eval = FALSE}
pdata |>
Expand Down