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?
Diese Übung ist Teil des Kurses
Intermediate R for Finance
Interaktive Übung
In dieser interaktiven Übung kannst du die Theorie in die Praxis umsetzen.
