Can you access variables from inside functions?
Suppose you ran this code in a fresh R session.
x_plus_y <- function(x) {
x + y
}
y <- 7
x_plus_y(5)
Questo esercizio fa parte del corso
Introduction to Writing Functions in R
Esercizio pratico interattivo
Passa dalla teoria alla pratica con uno dei nostri esercizi interattivi
Inizia esercizio