collect.model.names(RMark)
collect.model.names()所属R语言包:RMark
Collect names of MARK model objects from list of R objects (internal
收集MARK模型对象名称从R对象列表(内部
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Either names of all mark model objects (type=NULL) or names of mark model objects of a specific type (type) are extracted from a vector of R objects (lx) that was collected from the parent environment (frame) of the function that calls collect.model.names. Thus, it is two frames back (parent.frame(2)).
要么所有mark模型对象(type=NULL)或名称mark模型对象的特定类型(type)从R对象的矢量的提取(<名称所述>),收集从父环境(帧)的函数,该函数调用lx。因此,它是两帧(parent.frame(2))。
用法----------Usage----------
collect.model.names(lx, type = NULL, warning = TRUE)
参数----------Arguments----------
参数:lx
vector of R object names from parent.frame(2)
向量的R对象的名称从parent.frame(2)
参数:type
either NULL (for all types) or a character model type (eg "CJS")
NULL(所有类型)或字符模式类型(例如,“CJS”)
参数:warning
if TRUE warning given when models of different types are collected
如果为TRUE时发出的警告,收集不同类型的模型
Details
详细信息----------Details----------
If type=NULL then the names of all objects of class(x)[1]="mark" in lx are returned. If type is specified, then the names of all objects of class(x)=c("mark",type) in lx are returned.
如果type=NULL然后的所有对象的名称class(x)[1]="mark"lx返回。如果type指定,然后的所有对象的名称class(x)=c("mark",type)lx返回。
This function was written with the intention that it would be called from other functions ( e.g., collect.models, run.models) but it will work if called directly (e.g., collect.model.names( lx=ls())). While this function returns a vector of model names, collect.models returns a list of model objects. The latter can be used to easily create a list of models created in a function to be used as a return value without listing all the names of the functions. It uses collect.model.names to perform that function.
此功能的意图,这将是从其他函数调用(例如,collect.models,run.models),但它会工作,如果直接调用(例如,collect.model.names( lx=ls()))。虽然这个函数返回一个矢量的型号名称,collect.models返回一个列表的模型对象。后者可以轻松地创建一个列表中没有列出所有的函数名作为返回值的函数用于创建的模型。它使用了collect.model.names执行该功能。
值----------Value----------
model.list: a vector of mark model names
model.list:矢量mark的型号名称
(作者)----------Author(s)----------
Jeff Laake
参见----------See Also----------
collect.models, run.models, model.table
collect.models,run.models,model.table
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|