d*****u 发帖数: 17243 | 1 我如果想把一个t-test的结果直接写到文件里去,应该怎么操作呢?
我试着用了dput(),倒是可以写入文件
但是同一个文件只能操作一次
比如程序里如果要写入两个数据,第一个数据就被覆盖了
不知道有什么办法可以控制吗? | c*****m 发帖数: 4817 | 2 if you want to write results into a text file, then you can use
sink() + print()
if all you want are numbers and want to put them into a table in a latex->
pdf file, I suggest
xtable() + print() |
|