My R code has got too complex to have a non-modular approach. Ive done some
coding in other languages before, but I somehow cant figure out R's general
rules for global and local variables. I have put a simple code below, if
anyone can show me what i need to add to make this work, i would greatly
appreciate it!
#----------------------------------------
g_Means<-numeric()
defineSamples<- function()
{
g_Means<-5
}
runit<-function()
{
defineSamples()
g_Means #####<<This returns "numeric(0)", and not "5"
}
runit()
#----------------------------
Basically I can not get the parameter I set from a global scale...
--
View this message in context:
http://www.nabble.com/%28Newbie%29Basic-Basic-global-vs.-local-variables-tf3503101.html#a9783571
Sent from the R help mailing list archive at Nabble.com.
______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.