ng_get_size(RnavGraph)
ng_get_size()所属R语言包:RnavGraph
Extract point sizes from an active navGraph session for a particular data set.
提取点的大小从积极navGraph会议为一个特定的数据集。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
If you use the brush and resisizing tool in navGraph, you can retrieve your point sizes information with this function as long the navGraph session is still active.
如果您使用的的刷子和resisizing在navGraph工具,你可以使用此功能,长navGraph会话仍处于活动状态检索点的大小信息。
用法----------Usage----------
ng_get_size(obj, dataName)
参数----------Arguments----------
参数:obj
A navgraph handler of an active navGraph session.
一个navgraph处理程序的积极navGraph会议。
参数:dataName
String of the data name. If not specified and only one data set is beeing used in the navGraph session, it will default to this data. Otherwise, if multiple data sets are being used in a navGraph session, the function will list the name of these data sets and ask you to specify one.
字符串的数据名称。如果没有指定,只有一个数据集的对外使用在navGraph会议的,它会默认此数据。否则,如果正在使用多个数据集在navGraph会议,该功能将列出这些数据集的名称,并要求您指定一个。
值----------Value----------
Nummerical vector with size values for each point.
nummerical矢量与每个点的大小的值。
(作者)----------Author(s)----------
Adrian Waddell and Wayne Oldford
参见----------See Also----------
navGraph, ng_set_size<-, ng_get_color, ng_set_color<-
navGraph,ng_set_size<-,ng_get_color,ng_set_color<-
实例----------Examples----------
## Define a NG_data object[#定义一个NG_data的对象]
ng.iris <- ng_data(name = "IrisData", data = iris[,1:4])
## start a navGraph session[开始navGraph会话]
nav <- navGraph(ng.iris)
## get sizes from active navGraph session[#获得从积极的navGraph会议的尺寸]
sizes <- ng_get_size(nav, "IrisData")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|