在R語言中,運行結果可以通過以下幾種方式保存:
result <- mean(c(1, 2, 3, 4, 5))
write.table()
函數將結果保存到一個文件中。例如:result <- mean(c(1, 2, 3, 4, 5))
write.table(result, "result.txt")
result <- data.frame(mean = mean(c(1, 2, 3, 4, 5)))
png()
或pdf()
函數將圖形保存到一個圖片文件中。例如:plot(c(1, 2, 3, 4, 5))
dev.off()
這些方法可以幫助你保存R語言中的運行結果,以便后續分析和分享。