From 8210156b0a86fdec99ba6f142ee7250944a2173f Mon Sep 17 00:00:00 2001 From: Andreas Zankl Date: Tue, 8 Jul 2025 15:22:12 +0200 Subject: [PATCH] fixed typo in t.test example replaced . with _ in text, to match the code example (. only works with magrittr) --- intro-to-r-bioc/L1.2-tidy-r-intro.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intro-to-r-bioc/L1.2-tidy-r-intro.Rmd b/intro-to-r-bioc/L1.2-tidy-r-intro.Rmd index e22c33d..243e343 100644 --- a/intro-to-r-bioc/L1.2-tidy-r-intro.Rmd +++ b/intro-to-r-bioc/L1.2-tidy-r-intro.Rmd @@ -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 |>