找回密码
 注册
查看: 369|回复: 0

R语言 SearchTrees包 createTree()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-9-29 23:47:06 | 显示全部楼层 |阅读模式
createTree(SearchTrees)
createTree()所属R语言包:SearchTrees

                                         Create a Search Tree Index
                                         创建一个搜索树索引

                                         译者:生物统计家园网 机器人LoveR

描述----------Description----------

Create a search tree from the supplied data for use in during future lookups.
在今后的查找使用提供的数据,创建一个搜索树。


用法----------Usage----------


createTree(data, treeType = "quad", dataType = "point", columns = if (dataType=="point") 1:2 else 1:4, ...)



参数----------Arguments----------

参数:data
data.frame or matrix. Data to be indexed.  
数据框或矩阵。被编入索引的数据。


参数:treeType
Character. Indicates type of index tree to be created. Currently only "quad" (quad trees) is supported.  
字符。表示要创建的索引树的类型。目前,只有“四”(四树)的支持。


参数:dataType
Character. Indicates type of data being indexed. Currently "point", and "rect" are supported corresponding to points and rectangles, respectively.  Defaults to "point".  
字符。表示被索引的数据类型。目前“点”,和“正确的”支持对应的点和矩形,分别。默认为“点”。


参数:columns
Numeric. Indicates columns in data the information to be indexed can be found. Length depends on value of dataType (2 for "point" and 4 for "rect"). Defaults to columns 1 and 2. See Details.  
数字。指示列在data被编入索引的信息可以被找到。长度取决于价值的dataType(2 4“点”和“矩形”)。默认为1和2列。查看详细信息。


参数:...
Any additional/type specific parameters to be passed to the tree creation function. These include:     
任何额外/类型特定的参数将被传递给树生成功能。这些措施包括:

maxDepth: Numeric. Maximum depth of the tree. Defaults to 7.   
MAXDEPTH数字。树的最大深度。缺省值为7。

minNodeArea: Numeric. Minimum (rectangular) area to be represented by a single node. When set, this overrides maxDepth      
minNodeArea数字。最小区域(矩形)来表示一个单一的节点。当设置,这将覆盖maxDepth


Details

详细信息----------Details----------

For a point based tree, the two columns specified in columns represent the x and y values of the points.
对于一个点为基础的树,两列指定在columns表示的点的x和y值。

For a rectangle based tree, four columns must be specified. These columns represent the x and y coordinates of point 1 and the x and y coordinates of point 2, in that order (where point 1 and point 2 specify the rectangle to be stored).
对于一个矩形树,四列,必须指定。这些列表示在x和y坐标的点1和点2的x和y坐标,以该顺序(其中,点1和点2指定要存储的矩形)。


值----------Value----------

The class of the returned object depends on the tree type created, though all will inherit from the SearchTree S4 class and have the following slots:
返回的对象的类依赖于树创建的类型,但都将继承SearchTreeS4类有以下插槽:


参数:ref
An external pointer to the C level data structure.
从外部到C级的数据结构的指针。


参数:numNodes
Total number of nodes comprising the tree.
包括树的节点的总数。


参数:dataNodes
Number of nodes which store at least one data point.
存储至少一个数据点的节点的数目。


参数:maxDepth
Maximum depth of the tree.
树的最大深度。


参数:maxBucket
Maximum number of data points stored in a single node.
的最大数目的数据点存储在单个节点。


参数:totalData
Number of items indexed in the tree.
索引树中的项目数。


参数:dataType
Type of objects stored in the tree.
在树中存储的对象的类型。


(作者)----------Author(s)----------



Gabriel Becker




参考文献----------References----------

<h3>See Also</h3>   <code>SearchTree</code> <code>linkS4Class{QuadTree}</code>

实例----------Examples----------


x = rnorm(100)
y = rnorm(100)
dat = cbind(x,y)
tree = createTree(dat)

转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。


注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2024-11-30 08:45 , Processed in 0.023524 second(s), 16 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表