繁体   English   中英

将列表存储到文件中(R)

[英]Store list into a file (R)

我有以下数据框:

    Group.1         V2
1   27562761    GO:0003676
2   27562765    c("GO:0004345", "GO:0050661", "GO:0006006", "GO:0055114")
3   27562775    GO:0016020
4   27562776    c("GO:0005525", "GO:0007264", "GO:0005622")

第二列是列表。 我试图使用write.table将数据帧写入文本文件,但是没有用。 我想要的输出是以下内容(file.txt):

27562761    GO:0003676
27562765    GO:0004345, GO:0050661, GO:0006006, GO:0055114
27562775    GO:0016020
27562776    GO:0005525, GO:0007264, GO:0005622

我如何获得?

您可以查看一下接收sink ,也可以在将“ V2” write.csv平为字符串后使用write.csv

请尝试以下示例:

## recreating some data that is similar to your example
df <- data.frame(a = c(1, 1, 2, 2, 3), b = letters[1:5])
x <- aggregate(list(V2 = df$b), list(df$a), c)
x
#   Group.1   V2
# 1       1 1, 2
# 2       2 3, 4
# 3       3    5

## V2 is a list, as you describe in your question
str(x)
# 'data.frame':  3 obs. of  2 variables:
#  $ Group.1: num  1 2 3
#  $ V2     :List of 3
#   ..$ 1: int  1 2
#   ..$ 3: int  3 4
#   ..$ 5: int 5

sink(file = "somefile.txt")
x
sink()
## now open up "somefile.txt" from your working directory


x$V2 <- sapply(x$V2, paste, collapse = ", ")
write.csv(x, file = "somefile.csv")
## now open up "somefile.csv" from your working directory

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM