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

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

[复制链接]
发表于 2012-2-22 21:07:49 | 显示全部楼层 |阅读模式
StringSet(Rlibstree)
StringSet()所属R语言包:Rlibstree

                                        Create a StringSet object.
                                         创建StringSet对象。

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

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

This is a concstructor for the internal C-level  String Set data structure. This can be thought of as an unordered character vector with a length and facilities for indexing.  
这是一个内部的C级的String集合数据结构concstructor。这可以被认为是作为一个无序的特征向量与索引的长度和设施。

Since a string set is a set, the order of the elements is not meaningful. However the indexing facilities can be useful, for example, when sampling where the order is not important, but consistent across calls.
由于字符串集是一个集合,元素的顺序是没有意义的。然而,索引设施可以是有用的,例如,当采样的顺序并不重要,但在电话一致。


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


StringSet(..., class = "StringSet", .els = as.character(unlist(list(...))))



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

参数:...
one or more character vectors. These are are combined into one large character vector to be used to construct the set.  This allows one to make calls like StringSet(x, y).  Of course, this is just a convenience for  StringSet(c(x, y)) - 3 more characters.
一个或多个字符的向量。这些被合并成一个大的特征向量被用来建造一套。这允许一个像StringSet(x, y)电话。当然,这仅仅是一个方便StringSet(c(x, y)) -  3个字符。


参数:class
the name of the class of which we want an instance.  Being able to specify this  allows the caller to use this function as a constructor for derived classes.
其中,我们希望有一个实例的类的名称。能够指定允许呼叫者使用派生类的构造函数。


参数:.els
a character vector giving the elements for the set. This is a more convenient form  than ... if the values are already in a vector.
字符向量集合的元素。这是一个更方便的形式比...如果值是已经在一个向量。


Details

详情----------Details----------

This creates an object in C from the libstree  library and returns a reference to it.
这将创建一个对象在C从libstree库,并返回一个引用。


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

An object of class StringSet-class.
对象类StringSet-class。


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


Duncan Temple Lang <duncan@wald.ucdavis.edu>



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

http://www.omegahat.org/Rlibstree

参见----------See Also----------

SuffixTree-methods StringSet-class getLongestSubstring
SuffixTree-methodsStringSet-classgetLongestSubstring


举例----------Examples----------


words = c("stemming", "boing", "springs")
set = StringSet(words)

length(set)

set[sample(1:3, 1)]


# Appending values to the set [附加值的集]
# Note that we don't have to re-assign the value.[请注意,我们没有重新分配的值。]
append(set, c("a", "b", "c"))

length(set)


lapply(set, function(x) x)
sapply(set, function(x) x)

sapply(set, getNativeSymbolInfo("R_LST_elementAsRString"))


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


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

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-22 15:49 , Processed in 0.030970 second(s), 15 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

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