gpt4 book ai didi

r - 如何在Windows R上的Unix行尾写入文件

转载 作者:行者123 更新时间:2023-12-03 14:12:34 24 4
gpt4 key购买 nike

我有一个R脚本,可以在Windows上创建一个文本文件。

我同时使用write.tablewrite函数来写入文件。

然后,我需要在Unix系统上使用此文件,但是该文件具有Windows的行尾字符(^ M)。

是否可以在Windows上用Unix的行尾字符写R文件?

编辑

这是一个可重现的示例:

output.file <- file.path("./test.txt")

x <- c(1,2,3,4)
y <- c(5,6,7,8)
my.df <- data.frame(x, y)
my.df[] <- lapply(my.df, sprintf, fmt = "%14.7E")

write("First line", file = output.file)
write("Second line", file = output.file, append = TRUE)
write.table(my.df,
row.names = FALSE,
col.names = FALSE,
file = output.file,
quote = FALSE,
append = TRUE,
sep = "")

结果,如NotePad++所示:

enter image description here

最佳答案

help(write.table)中所述:

To write a Unix-style file on Windows, use a binary connection e.g. file = file("filename", "wb").



在您的示例中,只需更改第一行以在最后打开 "wb"连接和 close文件:
output.file <- file("./test.txt", "wb")

x <- c(1,2,3,4)
y <- c(5,6,7,8)
my.df <- data.frame(x, y)
my.df[] <- lapply(my.df, sprintf, fmt = "%14.7E")

write("First line", file = output.file)
write("Second line", file = output.file, append = TRUE)
write.table(my.df,
row.names = FALSE,
col.names = FALSE,
file = output.file,
quote = FALSE,
append = TRUE,
sep = "")

close(output.file)

enter image description here

关于r - 如何在Windows R上的Unix行尾写入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36933590/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com