由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 求教:怎样reshape data in R
相关主题
ask for help for R programmingsas 求助!!! 如何求-1 lag ?
How to use Proc format根据劳工部的PERM统计数字, statistician的收入09年比08年有
Help on nomogram[合集] 根据劳工部的PERM统计数字, statistician的收入09年比08年
[合集] 请教Excel 操作 (Excel 2007)a question on sample size
问个sas问题请教一个随机分布的问题
请教sas adv 130题中 第12题 第19题也弱问一个SAS里面genotype/SNP variable recoding的问题
被这个题搞死了,学统计的高手进来帮助一下请教个问题关于 default rate in profit calculation
请教高手:如何在winbugs里使用max(a,b)function?which route in SAS is faster?
相关话题的讨论汇总
话题: quantile话题: values话题: reshape话题: frequency话题: rep
进入Statistics版参与讨论
1 (共1页)
s****y
发帖数: 297
1
一数据,一列是各values, 另一列是这些values的frequency, 怎样才能对这些
values求quantile呢?
比如,
values Frequency
0.2 4
0.3 0
0.4 8
。 。
。 。
。 。
第二列表示数据中有4 个0.2, 0个0.3, 8个0.4 ,等等。。。
我需要求这些数的quantile,R里面有什么简便的方法吗?
谢谢了!!!
另外,这些技巧什么的可以在哪里学到呢?有没有高手给推荐本书啥的?
有的时候不知道技巧的关键字,搜索的结果都不是很理想。。。
d***n
发帖数: 43
2
a<-c(0.2, 0.3, 0.4)
b<-c(4,0,8)
c<-c()
for (i in 1:3)
{
d<-rep(a[i], b[i])
c<-c (d, c)
}
Then sort the c vector and calculate the quantile.
a***d
发帖数: 336
3
hehe, 直接 c <- rep(a, b) and no sorting needed.

【在 d***n 的大作中提到】
: a<-c(0.2, 0.3, 0.4)
: b<-c(4,0,8)
: c<-c()
: for (i in 1:3)
: {
: d<-rep(a[i], b[i])
: c<-c (d, c)
: }
: Then sort the c vector and calculate the quantile.

1 (共1页)
进入Statistics版参与讨论
相关主题
which route in SAS is faster?问个sas问题
请教 2 道SAS Adv 真题请教sas adv 130题中 第12题 第19题
问题请教被这个题搞死了,学统计的高手进来帮助一下
急!SAS adv的一道题,谢谢!请教高手:如何在winbugs里使用max(a,b)function?
ask for help for R programmingsas 求助!!! 如何求-1 lag ?
How to use Proc format根据劳工部的PERM统计数字, statistician的收入09年比08年有
Help on nomogram[合集] 根据劳工部的PERM统计数字, statistician的收入09年比08年
[合集] 请教Excel 操作 (Excel 2007)a question on sample size
相关话题的讨论汇总
话题: quantile话题: values话题: reshape话题: frequency话题: rep