rep.data.frame(mefa)
rep.data.frame()所属R语言包:mefa
Inflate (repeat) a Data Frame
充气(重复)的数据框
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The function inflates a data frame based on count values in a vector corresponding the rows.
该函数膨胀的基础上的计数值对应的行向量中的一个数据框。
用法----------Usage----------
## S3 method for class 'data.frame'
rep(x, ...)
参数----------Arguments----------
参数:x
a matrix or data frame, but can be a vector.
一个矩阵或数据框,但也可以是一个矢量。
参数:...
arguments passed to the function rep, i.e. times, length.out and each (see explanation there).
参数传递给函数的rep,即times,length.out和each(有解释)。
Details
详细信息----------Details----------
Each rows of the data frame x will be repeated as many times as the corresponding value in e.g. the vector times. This function is called internally by the function stcs.
每一行的数据框的x将被重复多次,作为相应的值,例如向量times。这个函数被调用内部函数stcs。
值----------Value----------
(作者)----------Author(s)----------
P\'eter S\'olymos, <a href="mailto:solymos@ualberta.ca">solymos@ualberta.ca</a>
参考文献----------References----------
S\'olymos P. (2008) mefa: an R package for handling and reporting count data. Community Ecology 9, 125–127.
S\'olymos P. (2009) Processing ecological data in R with the mefa package. Journal of Statistical Software 29(8), 1–28. http://www.jstatsoft.org/v29/i08/
http://mefa.r-forge.r-project.org/
参见----------See Also----------
stcs
stcs
实例----------Examples----------
x <- data.frame(sample = LETTERS[c(1,1,2,2,3)],
species = letters[c(5,5,5,6,7)],
count = c(1,2,10,3,4), segment = letters[c(8,9,8,9,8)])
x
rep(x[,c(1,2,4)], times = x[,3])
rep(x[,c(1,2,4)], each = 2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|