我正在写一个文本文件的矩阵。问题是任何超过10个字符的行都会被剪切并添加到下一行。我想让它全部显示在一行中。
示例,1 x 12矩阵的基本信息如下:
12
0 0 0 0 0
0 0 0 0 0
0 0
目标:
12
0 0 0 0 0 0 0 0 0 0 0 0
代码:
# Create all the info
info <- paste(inputSize)
inTheta <- matrix (0,1,inputSize)
# Create the file
file.create(fileDir)
# Write the content
write(x=info,file=fileDir,append=TRUE)
write(x=inTheta,file=fileDir,append=TRUE)
答案 0 :(得分:-1)
您可以在ncolumns
函数中指定write
参数,以便根据需要生成该行:
write(m, "file.txt", append = T, ncolumns = 12)
这将提供一个文件:
0 0 0 0 0 0 0 0 0 0 0 0