Function scope (2)
Let's try another one. Here, hundred
is defined outside of the function scope, but is used inside of the function.
hundred <- 100
percent_to_decimal <- function(percent) {
percent / hundred
}
What will percent_to_decimal(6)
return?
Este ejercicio forma parte del curso
Intermediate R for Finance
Ejercicio interactivo práctico
Pon en práctica la teoría con uno de nuestros ejercicios interactivos
