sampleStep(tilingArray)
sampleStep()所属R语言包:tilingArray
Sampling of ascending numbers to ensure minimal spacing.
升数,以确保最小间距采样。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Given a vector of ascending numbers and a step width, sample the numbers such that the difference between consecutive numbers is greater than or equal to step.
鉴于一个递增数向量和一个步长,样品的数量,这样连续数之间的差异大于或等于step。
用法----------Usage----------
sampleStep(x, step)
参数----------Arguments----------
参数:x
Numeric or integer vector.
数字或整数向量。
参数:step
Numeric scalar.
数字标。
Details
详情----------Details----------
The simple algorithm works greedily from x[1] to x[length(x)]. First, x[1] is selected. Then, if x[i] is selected, all numbers x[j] with j>i and x[j]-x[i]<step are dropped. Then, i is set to the
简单的算法,贪婪地从x[1]x[length(x)]。首先,x[1]被选中。然后,如果x[i]被选中,所有的数字x[j]j>i和x[j]-x[i]<step被丢弃。然后,i设置为
值----------Value----------
A logical vector of the same length as x, representing the selected subsample.
逻辑向量的长度相同x,代表选定的子样本。
作者(S)----------Author(s)----------
W. Huber <huber@ebi.ac.uk>
举例----------Examples----------
x = sort(as.integer(runif(20)*100))
sel = sampleStep(x, step=10)
x
x[sel]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|