[R] The three-dot question

Feng Li m at feng.li
Mon Jan 14 11:21:27 CET 2013


Dear all,

Why does not the three-dot accept arguments from the parent environment?
I am just confused with this error, can someone give me a hint? 

> rm(list=ls())
> testFun <- function(a, ...)
+   {
+     if(a){
+         print(a)
+       }else
+       {
+         print(b)
+       }
+   }
> 
> myTask <- function(a)
+   {
+     b <- 3
+     testFun(a, b = b)
+   }
> myTask(FALSE)
Error in print(b) : object 'b' not found


Thanks in advance!

Feng

-- 
Feng Li
Department of Statistics
Stockholm University
SE-106 91 Stockholm, Sweden
http://feng.li/



More information about the R-help mailing list