University of Luxembourg
Wednesday, the 26th of March, 2025
You will learn to:
|>
Assigned functions to a name using the keyword function
runif(n)
Generate n
numbers from the uniform distribution. By default between 0 and 1.
In the Global Environment:
Are reusable.
For base function grepl()
which finds a pattern (here either an A
or C
) and return a logical vector
x
) is input vectorIn the tidyverse, input is the first argument of functions.
Avoid using a |>
for a single operation, replace:
by:
You learned to:
Acknowledgments