Skip to content
Snippets Groups Projects
import_packages.R 596 B
Newer Older
### File used to automatically create package imports with roxygen2
### Note that it is discouraged to import many packages fully to avoid name conflicts
### If possible reference functions directy e.g. reshape2::melt()
### There is a (very) minor performance penalty for ::,
### if some functions are used frequently you may just import them
### with something like @importFrom reshape2 melt cast

#' @importFrom data.table %like%
#' @importFrom magrittr %>%
#' @importFrom utils URLdecode write.table
NULL

# Make R CMD check happy
if(getRversion() >= "2.15.1")  utils::globalVariables(c("."))