关于 R 中矢量化的错误 [英] An error about vectorization in R

查看:51
本文介绍了关于 R 中矢量化的错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的R代码如下.主要任务是计算重复的行数.

My R code is as follows. The main task is to calculate the row number of repetitions.

library(plyr)
data<-data.frame(1,2,3);
x <- read.table(text = "ID1    ID2    n    m
13    156   12   15
94    187   14   16
66    297   41   48
29    89    42   49
78    79    51   79", header= TRUE)

distfunc <- function(data,ID1,ID2,n,m){
X1<-ID1; ################
X2<-ID2; ################
X3<-unlist(mapply(':', n, m));
data<-rbind(data,data.frame(X1,X2,X3));
return(data);
}

data<-distfunc(data,x$ID1, x$ID2,x$n, x$m)

data<-data[-1,]

    plyr::count(data, names(data)); ## Calculates the row number of repetitions

我收到的错误信息:

Error in data.frame(X1, X2, X3) : 
  arguments imply differing number of rows: 5, 52

我尝试通过 R 错误:在数值表达式中有 19 个元素:只使用第一个",但失败了,结果是错误的.这个问题和那个问题不一样.

I try to fix it by R Error: "In numerical expression has 19 elements: only the first used", but it failed and the result is wrong. This probelm is not the same as that probelm.

推荐答案

我想你想做:

# library(plyr)
# data<-data.frame(1,2,3);
x <- read.table(header=TRUE, text = 
"ID1    ID2    n    m
  13    156   12   15
  94    187   14   16
  66    297   41   48
  29    89    42   49
  78    79    51   79")

#distfunc <- function(data, ID1, ID2, n, m) {
#  X1 <- ID1 ################
#  X2 <- ID2 ################
#  X3 <- unlist(mapply(':', n, m))
#  data <- rbind(data, data.frame(X1,X2,X3))
#}

#data <- distfunc(data, x$ID1, x$ID2, x$n, x$m)
L <- apply(x, 1, function(x) data.frame(X1=x[1], X2=x[2], X3=x[3]:x[4], row.names=NULL))
data <- L[[1]]
for (i in 2:length(L)) data <- rbind(data, L[[i]])

或者在 apply() 中使用更好的可读函数:

or with a better readable function in apply():

L <- apply(x, 1, function(r) data.frame(X1=r["ID1"], X2=r["ID2"], X3=r["n"]:r["m"], row.names=NULL))
data <- L[[1]]; for (i in 2:length(L)) data <- rbind(data, L[[i]])

这是一个更简单的变体:

Here is a simpler variant:

data <- data.frame(X1=x$ID1[1], X2=x$ID2[1], X3=x$n[1]:x$m[1])
for (i in 2:nrow(x)) data <- rbind(data, data.frame(X1=x$ID1[i], X2=x$ID2[i], X3=x$n[i]:x$m[i]))

这篇关于关于 R 中矢量化的错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆