R:通过数据范围计算百分比 - 创建bin

时间:2015-07-01 05:48:55

标签: r function bin seq

我对R中的编码绝对是全新的 - 实际上是编码,所以请原谅我的无知。

我有一个数据文件,其中包含不同长度功能的“开始”和“结束”位置值。我想输出一个文件,通过功能的长度(1 - 100%)按百分比为每个功能(数据行)创建容器。

我认为这基本上回答了这个问题,但我仍然遇到问题:R : Create specific bin based on data range

bin_it <- function(START, END, BINS) {
  range <- END-START
  jump <- range/BINS
  v1 <- c(START, seq(START+jump+1, END, jump))
  v2 <- seq(START+jump-1, END, jump)+1
  data.frame(v1, v2)
}

我的具体数据如下:

feature <- data.frame(chrom, start, end, feature_name, value, strand)
chr2L   7529    9484    CG11023 1   +
chr2L   21952   24237   CR43609 1   +
chr2L   65999   66242   CR45339 1   +

使用上面的代码,我尝试过:

bin_it <- function(START, END, BINS) {
      range <- START-END
      jump <- range/BINS
      v1 <- c(START, seq(START+jump, END, jump))
      v2 <- seq(START+jump, END, jump)
      data.frame(v1, v2)
    }

bin_it(feature[,2], feature[,3], 100)

我收到此错误消息:

Error in seq.default(START + jump + 1, END, jump) : 
'from' must be of length 1

有关如何解决此问题的任何建议?

更新

作为上述数据集第一行的示例: START = 7529, END = 9484, BINS = 10 (to simplify), range = 1955, jump = 195.5

所需的输出将是:

      v1       v2
[1]  7529.0  7724.5
[2]  7724.5  7920.0
[3]  7920.0  8115.5
        ...
[9]  9093 9288.5
[10] 9288.5 9484

1 个答案:

答案 0 :(得分:0)

错误意味着您将向量作为第一个参数(以及第二个参数)提供给seq而不是单个数字。试试bin_it(feature[1,2], feature[1,3], 100)它应该可以正常工作。现在解决这个问题要么做一个循环(坏)

output = c()
for(l in 1:dim(feature)[1]){
  output = c(output, bin_it(feature[l,2], feature[l,3], 100))
}

或(更好的方式)使用申请系列。在你的情况下,这样的事情应该这样做:

output = apply(feature[,2:3], 1, function(x) bin_it(START = x[,1], END = x[,2], BINS = 100))