开发者

How do I email myself data from a R script?

I'm hoping to take advantage of Amazon spot instances which come at a lower cost but can terminate anytime. I want to set it u开发者_StackOverflowp such that I can send myself data mid-way through a script so I can pick up from there in the future.

How would I email myself a .rdata file?

difficulty: The ideal solution will not involve RCurl since I am unable to install that package on my machine instance.


The same way you would on the command-line -- I like the mpack binary for that which you find in Debian and Ubuntu.

So save data to a file /tmp/foo.RData (or generate a temporary name) and then

 system("mpack -s Data /tmp/foo.RData you@some.where.com")

in R. That assumes the EC2 instance has mail setup, of course.

Edit Per request for a windoze alternative: blat has been recommended by other for this task.


There is a good article on this in R News from 2007. Amongst other things, the author describes some tactics for catching errors as they occur, and automatically sending email alerts when this happens -- helpful for long simulations.

Off topic: the article also gives tips about how the linux/unix tools screen and make can be very useful for remote monitoring and automatic error reporting. These may also be relevant in cases when you are willing to let R email you.


What you're asking is probably best solved not by email but by using an EBS volume. The volume will persist regardless of the instance (note though that I'm referring to an EBS volume as opposed to an EBS-backed instance).

In another question, I mention a bunch of options for checkpointing and related tools, if you would like to use a separate function for storing your data during the processing.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜