Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 467 Bytes

Readme.md

File metadata and controls

14 lines (11 loc) · 467 Bytes

These functions can be sourced directly from Github into your environment using the following code:

#First, create a simple function that can import other functions from Github
source_github <- function( url ) {
  require(RCurl)
  script <- getURL(url, ssl.verifypeer = FALSE)
  eval(parse(text = script), envir=.GlobalEnv)
} 

#Then run the function to call specific costume functions in gihub. You only need the RAW URL address.
source_github( "URL" )