作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个R脚本,可以在Windows上创建一个文本文件。
我同时使用write.table
和write
函数来写入文件。
然后,我需要在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 = "")
最佳答案
如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)
关于r - 如何在Windows R上的Unix行尾写入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36933590/
我是一名优秀的程序员,十分优秀!