我的数据框是
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)
但它只给我一个字符向量而不是一个命名的整数。
答案 0 :(得分:1)
那么,您想要获取数据框的rows
列并将其作为名称probes
吗?
x <- setNames(df$rows, df$probes)
或
x <- structure(df$rows, names=as.character(df$probes))