<- 10
a <- 20
A == A a
7 Functions and variable names
7.1 Quiz: Variable names I
Can we create a variable named 1_r
in R?
✗Yes
✓No
7.2 Quiz - Variable names II
When we execute the code:
the result will be:
✗TRUE
✓FALSE
7.3 Quiz - Functions I
Do all R functions accept/require parameters to be executed?
✓No
✗Yes
7.4 Quiz - Functions II
To compute the number of characters of the following string
"Lorem ipsum dolor"
you should use the base R function:
✗char("Lorem ipsum dolor")
✓nchar("Lorem ipsum dolor")
✗length("Lorem ipsum dolor")
✗size("Lorem ipsum dolor")