NLReport(RNetLogo)
NLReport()所属R语言包:RNetLogo
Reports a value or list of values
报告的值或值的列表
译者:生物统计家园网 机器人LoveR
描述----------Description----------
NLReport reports NetLogo data back to R.
NLReport报告的NetLogo数据传回R.
用法----------Usage----------
NLReport(reporter, nl.obj=NULL)
参数----------Arguments----------
参数:reporter
A string conataining a NetLogo reporter. (Or a vector of strings.)
的字符串conataining一个的NetLogo记者。 (或一个字符串vector)。
参数:nl.obj
(optional) A variable holding a reference to a NetLogo instance created with NLStart.
(可选)变量参考到的NetLogo实例的创建与NLStart。
Details
详细信息----------Details----------
Every reporter (= a command which will return a value), which can be called in the NetLogo Command Center, can be called with NLReport.
每一个记者(=命令,该命令将返回一个值),它可以被称为以NetLogo指挥中心,被称为NLReport。
值----------Value----------
A list or, if necessary, a nested list with the reported values.
列表,或者,如果必要的话,一个嵌套的列表与所报告的值。
(作者)----------Author(s)----------
Jan C. Thiele <jthiele@gwdg.de>
参见----------See Also----------
NLDoReport, NLDoReportWhile, NLGetPatches, NLGetAgentSet
NLDoReport,NLDoReportWhile,NLGetPatches,NLGetAgentSet
实例----------Examples----------
## Not run: [#不运行:]
nl.path <- "C:/Program Files/NetLogo 5.0"
NLStart(nl.path)
model.path <- "/models/Sample Models/Earth Science/Fire.nlogo"
NLLoadModel(paste(nl.path,model.path,sep=""))
NLCommand("setup")
NLDoCommandWhile("burned-trees < 2200", "go")
noburned <- NLReport("burned-trees")
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|