ng_get(RnavGraph)
ng_get()所属R语言包:RnavGraph
Extract data from a NG_data, NG_graph, NG_path or navgraph handler object.
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Extract data from objects from some of the in RnavGraph specifically defined classes.
从中提取数据从一些在RnavGraph具体定义的类的对象。
用法----------Usage----------
ng_get(obj, what = NULL, ...)
参数----------Arguments----------
参数:obj
Either a: navgraph handler, NG_data, NG_path, NG_graph object.
无论是 - 一个:navgraph处理程序,NG_data,NG_path,NG_graph对象。
参数:what
String of what should be extracted from the object. You can get a list of possible accessible objects by not specifying the what argument.
应该怎样从对象中提取的字符串。不指定什么参数,你可以得到一个列表,可以访问的对象。
参数:...
Currently not used.
目前没有使用。
值----------Value----------
Object that was requested with what.
的对象有什么要求。
(作者)----------Author(s)----------
Adrian Waddell and Wayne Oldford
参见----------See Also----------
navGraph, ng_get-methods, ng_set, ng_set-methods, ng_set_color<-, ng_get_color, ng_set_size<-, ng_get_size
navGraph,ng_get-methods,ng_set,ng_set-methods,ng_set_color<-,ng_get_color,ng_set_size<-,ng_get_size
实例----------Examples----------
## Define a NG_data object[#定义一个NG_data的对象]
ng.iris <- ng_data(name = "iris", data = iris[,1:4])
## start a navGraph session[开始navGraph会话]
nav <- navGraph(ng.iris)
## See what you can extract from the navGraph handler[#请参阅你可以提取从navGraph处理的]
ng_get(nav)
## get group[#获取组]
ng_get(ng_get(nav,"data"),"group")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|