我有一个代码如下,它将数据写入文件
cat("The last signal file and the file before that have",
capture.output(timestamps[1]-timestamps[2]),"n","n", file=fileConn)
当我在windows中运行这个命令时,最后会有两行空白。但当我在linux中运行相同的程序时,我得到的不是两行新行,而是两个空格。。。我怎样才能得到两个空行?我试过"$\n",但没用。
您可以与粘贴结合使用sep=n
:
cat(paste("value1", "value2"),'n',sep='n')
使用"\r\n"而不是"\n",它会产生所需的结果。