Skip to content
Snippets Groups Projects
import_packages.R 464 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 %>%
NULL