Skip to content

Base functions I have built to use in my different projects.

Notifications You must be signed in to change notification settings

icps86/Functions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

69 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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" )

About

Base functions I have built to use in my different projects.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages