R data.table将函数应用于使用列作为参数的行

时间:2014-08-21 16:26:01

标签: r data.table mapply

我有以下data.table

x = structure(list(f1 = 1:3, f2 = 3:5), .Names = c("f1", "f2"), row.names = c(NA, -3L), class = c("data.table", "data.frame"))

我想将函数应用于data.table的每一行。函数func.test使用args f1f2并对其执行某些操作并返回计算值。假设(作为例子)

func.text <- function(arg1,arg2){ return(arg1 + exp(arg2))}

但我的真实函数更复杂并且循环和所有,但返回计算值。 实现这一目标的最佳方法是什么?

3 个答案:

答案 0 :(得分:39)

最好的方法是编写一个矢量化函数,但如果你不能,那么也许这样做:

x[, func.text(f1, f2), by = seq_len(nrow(x))]

答案 1 :(得分:14)

我发现的最优雅的方式是mapply

x[, value := mapply(func.text, f1, f2)]
x
#    f1 f2    value
# 1:  1  3 21.08554
# 2:  2  4 56.59815
# 3:  3  5 151.4132

答案 2 :(得分:8)

我们可以使用.I函数定义行。

dt_iris <- data.table(iris)
dt_iris[, ..I := .I]

## Let's define some function
some_fun <- function(dtX) {
    print('hello')
    return(dtX[, Sepal.Length / Sepal.Width])
}

## by row
dt_iris[, some_fun(.SD), by = ..I] # or simply: dt_iris[, some_fun(.SD), by = .I]

## vectorized calculation
some_fun(dt_iris)