R/loadedListFunction.R

Defines functions loadedList

Documented in loadedList

#' get loaded Packages in a dataframe column sorted alphabetically for easy skim thru
#'
#' @return loaded package names
#' @export
#'
#' @examples loadedList()
loadedList<-function(){
  require(dplyr,quietly = TRUE)
  list<-data.frame(Packages=loadedNamespaces()) %>% arrange(Packages)
  return(list)
}
benjaminryanclarke/rDailyFantasy documentation built on May 24, 2019, 7:53 a.m.