cutByQuantile(rockchalk)
cutByQuantile()所属R语言包:rockchalk
Calculates the "center" quantiles, always including the median.
计算的“中心”的位数,始终包括中位数。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
If the numeric variable has fewer than 6 unique observed values, this will send the data to cutByTable. The default return will find dividing points at three quantiles: c(0.25, 0.50, 0.75) If n=4, the dividing points will be c(0.20, 0.40, 0.60, 0.80) If n=5, c(0.10, 0.30, 0.50, 0.70, 0.90) Larger n that are odd will include 0.5 and evenly spaced points out to 0 and 1. Larger n that is even will return evenly spaced points calculated by R's pretty function.
如果数字变量少于6个独特的观测值,这将数据发送到cutByTable。默认的返回会发现在三个分位数:。(0.25,0.50,0.75),如果n = 4个分割点,分割点将会是c(0.20,0.40,0.60,0.80),如果n = 5时,c(0.10,0.30, 0.50,0.70,0.90)较大的n的是奇数,将包括0.5和均匀间隔的点为0和1。 n值较大,甚至将返回均匀分布的点计算R的pretty函数。
用法----------Usage----------
cutByQuantile(x, n = 3)
参数----------Arguments----------
参数:x
A numeric vector.
一个数值向量。
参数:n
The number of quantile points. See details.
分量的点的数目。查看详细信息。
值----------Value----------
A vector
一个向量
(作者)----------Author(s)----------
Paul E. Johnson <pauljohn@ku.edu>
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|