Is there any way to transfer bootstrapped data to another computer?

I'm running some network analyses and have been running into difficulties generating plots from the bootstrapped data due to insufficient memory from my computer. Is there any way to transfer environment variables such as the bootstrapped data in R studio from one computer to another? Thanks.

Your options are save and load, or dump and source. I would suggest the save/load route for larger data sets, as my recollection is that it uses a binary format and has smaller file footprint.

Either way, you're saving the data to a file, transferring that file to the other machine by whatever route you like, and then reading the file on the second machine.

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.