R中创建not-yet-evaluated对象

create not-yet-evaluated object在R中创建 not-yet-evaluated(就是some code we will evaluated later!!)对象;然后执行的时候需要调用eval(参数中提供执行环境)或者do.ca()执行;

do.call()作用就是

do.call( "someRFunction",aListOfArgs)

<=>

someRFuncion( aListOfArgs );

do.call() is constructing a function call from the list of arguments

 

posted @ 2015-10-19 16:50  随遇而安jason  阅读(256)  评论(0编辑  收藏  举报