I usually use some personal functions during my r sessions, as:
s1<-"https://github.com/juanchiem/R-sources-Juan/blob/master/rend_aj.R?raw=TRUE" # rend_aj.R
s2<-"https://github.com/juanchiem/R-sources/blob/master/theme_juan.R?raw=TRUE" # theme_juan.R
s3<-"https://github.com/juanchiem/R-sources-Juan/blob/master/assumptions.R?raw=TRUE" # lm_assumptions.R
devtools::source_url(s1)
devtools::source_url(s2)
devtools::source_url(s3)
I wonder if Is it possible to create a function to source these 3 files from github directly by their file names (detailed after #) Thanks!
wget/curlor any other tool(e.gm(M)apping the devtools call)?