码迷,mamicode.com
首页 > 其他好文 > 详细

R中创建not-yet-evaluated对象

时间:2015-10-19 18:46:27      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:

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

 

R中创建not-yet-evaluated对象

标签:

原文地址:http://www.cnblogs.com/amazement/p/4892328.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!