How do you sink both the console input and the console output to a text file? Take the following code:
sink("temp.txt")
1:10
sink()
It will write a text file that looks like this:
[1] 1 2 3 4 5 6 7 8 9 10
But how do I create a text file that looks like this:
> 1:10
[1] 1 2 3 4 5 6 7 8 9 10
I've looked at ?sink and searched R-help. I've also read: maintaining an input / output log in R
If it makes a difference, I'm using StatET and Eclipse.
How can I copy the output of the R console into a word document? Select what you want in the console and copy. Then in Word paste using Keep Text Only. (Right click to get the paste options.)
You can also save the entire R console screen within the GUI by clicking on "Save to File..." under the menu "File." This saves the commands and the output to a text file, exactly as you see them on the screen.
Click on the Console window, go to the File menu and select “Save Workspace...”. In another R session, you open this workspace with the “Load Workspace...” command. To save everything that has scrolled past on the Console window, click on the Console window. Go to the File menu, and then select “Save to File...”.
library(TeachingDemos)
txtStart("temp.txt")
1:10
txtStop()
The text file now looks like
> 1:10
[1] 1 2 3 4 5 6 7 8 9 10
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With