Skip to content

burrowsdt/secRetstash

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

secRetstash

secRetstash is a package that holds functions I use to make my R life easier. It is mainly intended for personal use and R experimentation, you are welcome to poke around and install if you find anything useful! Each function’s documentation can be reviewed using ?functionName and additional examples are below.

Installation

You can install the package from GitHub with:

# install.packages("devtools")
devtools::install_github("burrowsdt/secRetstash")

Brief Examples

Each function is presented here, sorted alphabetically, with a brief example of its purpose.

removeExcept

removeExcept empties your global environment of all objects except those specified by the user. Pass the object name as a string.

library(secRetstash)
objectA <- c("a", "b", "c")
objectB <- c("d", "e", "f")

removeExcept("objectA")

Pass more than one object name as a string to retain multiple objects.

objectA <- c("a", "b", "c")
objectB <- c("d", "e", "f")
objectC <- c("g", "h", "i")
objectD <- c("j", "k", "l")

removeExcept(c("objectA", "objectB"))

About

No description, website, or topics provided.

Resources

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE.md

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages