0

我拥有的数据框是

         rows     probes
            3    244903_at
            4    244904_at 
            6    244906_at
            12   244912_at
            13   244913_at
            20   244920_s_at
            21   244921_s_at
            23   244923_s_at
            26   244924_at

并希望将其转换如下:

     structure(c(3L, 4L, 6L, 12L, 13L, 20L, 21L, 23L, 24L, 26L), .Names = c("244903_at", 
        "244904_at", "244906_at", "244912_at", "244913_at", "244920_s_at", 
        "244921_s_at", "244923_s_at", "244924_at"))

我尝试使用

            df<-as.vector(df)

但它只给了我一个字符向量,而不是一个命名的整数。

4

1 回答 1

1

那么,您想获取rows数据框的列并将其probes作为名称吗?

x <- setNames(df$rows, df$probes)

或者

x <- structure(df$rows, names=as.character(df$probes))
于 2013-08-15T07:35:48.120 回答