Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含基因型数据的巨大数据文件。我想提取某些数据并立即将这些数据导出到 excel 中。当我运行用于抽象数据的代码时,R 想要将此数据放在控制台窗口中,然后我会收到内存空间不足的错误消息。有没有办法告诉 R,不要将提取的数据放在控制台窗口中,而是将其导出到 excel 文件中?
抽象所需数据的代码是
subset(project, grepl("^UEBB018.*", pedigree_dhl) )
这是@joran 评论的后续行动:
subfile <- subset(project, grepl("^UEBB018.*", pedigree_dhl) ) write.csv(subfile, file="outUEBB018.csv")
我的记忆是您需要分两步执行此操作,因为未评估 write.csv 的第一个参数,但我对这些细节的记忆不是很好。(我经常使用帮助文件。)Ben 下面的评论是正确的。您可以一步完成。