log2转换ff对象

时间:2015-09-29 15:44:05

标签: r logarithm ff ffbase

我想log2转换来自ff包的ff对象中的所有数值。

使用我的df

library(ff)
    df <- 'probeset_id sample1 sample2 sample3
            probe_1 1834.2 1743.4 1384
            probe_2 4711 4922 4650
            probe_3 4555 1387 4650.8
            probe_4 2588 1325 3258'
    df <- read.table(text=df, header=T)
    write.table(df, "del.txt", col.names=T, row.names=F, quote=F, sep="\t")
    df <- read.table.ffdf(file="del.txt", header=T)

我尝试了下面的代码,但是我收到了一个错误:

df[, 2:length(df)] <- log(df[2:length(df)], 2)
Error in log(df[2:length(df)], 2) :
  non-numeric argument to mathematical function

有一种方法可以将此功能应用于ff个对象吗?

1 个答案:

答案 0 :(得分:1)

log(df[,2:length(df)],2)有效但sapply(df[,2:length(df)],log2)可能会更好,如果你有一个大数据帧。