Re:如何使用R计算与具有相同字符的另一列相对应的列的第90百分位数

时间:2017-03-23 05:53:15

标签: r data-cleaning

x<-read.csv("input_file.csv")

看起来像...... After reading the csv file

所以要计算时间列的第90个PERCENTILE列,以命名具有相同字符的列。我用过这个:

aggregate(df$Time, by=list(Name=df$Name), FUN=function(x) quantile(x, probs =0.9))

但它会出现如下错误:

Error in df$Time : object of type 'closure' is not subsettable

请帮忙。

0 个答案:

没有答案