sample.tfl(zipfR)
sample.tfl()所属R语言包:zipfR
Incremental Samples from a Type Frequency List (zipfR)
增量样本从一个的类型频率表(zipfR)
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Compute incremental random samples from a type frequency list (an object of class tfl).
计算的增量随机抽样从一种类型的频率表(类的一个对象tfl“)。
用法----------Usage----------
sample.tfl(obj, N, force.list=FALSE)
参数----------Arguments----------
参数:obj
an object of class tfl, representing a type frequency list
一个对象的类tfl,代表一个类型的频率表
参数:N
a vector of non-negative integers in increasing order, the sample sizes for which incremental samples will be generated
以递增顺序的向量的非负整数,样品体积增量样品将产生
参数:force.list
if TRUE, the return value will always be a list of tfl objects, even if N is just a single integer
如果TRUE,则返回值将永远是tfl对象的列表,即使N只是一个单一的整数
Details
详细信息----------Details----------
The current implementation is reasonably efficient, but will be rather slow when applied to very large type frequency lists.
目前的实现是合理有效的,但会很慢时,适用于非常大的频率列表。
值----------Value----------
If N is a single integer (and the force.list flag is not set), a tfl object representing a random sample of size N from the type frequency list obj.
如果N是一个整数(和force.list标志没有被设置),tfl对象,随机抽样的大小N型频率列表<X >。
If N is a vector of length greater one, or if force.list=TRUE, a list of tfl objects representing incremental random samples of the specified sizes N. Incremental means that each sample is a superset of the preceding sample.
N如果是一个向量的长度大于1,或者如果force.list=TRUE,tfl对象代表指定的大小N的增量随机抽样的列表。增量意味着每个样品前面的示例中的一个超集。
参见----------See Also----------
tfl for more information about type frequency lists
tfl型频率列表的详细信息
sample.spc is an analogous function for frequency spectra (objects of class spc)
sample.spc是一个类似的功能,频谱(类的对象spc)
实例----------Examples----------
## load Brown tfl[#负载布朗TFL]
data(Brown.tfl)
summary(Brown.tfl)
## sample a tfl of 100k tokens[品尝TFL 100K的令牌]
MiniBrown.tfl <- sample.tfl(Brown.tfl,1e+5)
summary(MiniBrown.tfl)
## if we repat, we get a different sample[#如果我们repat,我们得到了一个不同的样本]
MiniBrown.tfl <- sample.tfl(Brown.tfl,1e+5)
summary(MiniBrown.tfl)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|