I am wondering if it's possible to have relatively simple R code pull and feed data into say... a text file attached to an email without having to keep my PC on.
I have a web-scraping code here that use:
library(XML)
library(stringr)
to scrape some web data which i would like to save daily..
Putting that on a loop that runs every 24 hours would be relatively easy, but i don't want to keep my PC on or not able to use the R environment while this is running.
what are my options?