How do i modify the value of vairable 'loco' in following snippet:
poco <- function() {
func <- function(x) {
print(loco)
loco <- loco+x
}
loco <- 123
func(1)
func(2)
}
this functions gives following result:
> poco()
[1] 123
[1] 123
|
How do i modify the value of vairable 'loco' in following snippet:
this functions gives following result:
|
||||
This The What was happening in your first function where you Hope that helps! |
|||
|
|
R has a stack of environments. So while you are changing a variable within a function with simple To do so, you have several options, as illustrated below: 1st Option:
2nd (better) Option:
And the 3rd Option:
then you will have:
Note that by using options 1 and 2, if you have several nested function definitions, you are modifying the value just in the parent function but not globally. |
|||||||||||||
|
|
|||||||||
|
|
In general it is a good thing that Let's say that you use a variable In general, if you need a variable in a function, pass it as a variable. However, R does allow scoping from inside the function to outside the function, but not vice-versa. See also this recent question for more information. |
|||
|
|
loco <<- loco + xmay do what you're looking for. – Justin Oct 9 '12 at 15:19funcand letfuncreturn it. – Roland Oct 9 '12 at 15:20