R/roxygen-tags.R

#
# These tags are required to use functions in other packages
# 
#' @import ggplot2
#' @import plyr
#' @import stats
#' @import utils
# 
# These tags are required by Rcpp
# 
#' @useDynLib spatialwarnings
#' @importFrom Rcpp sourceCpp
# 
# 
# The NULL is mandatory so that devtools actually reads this file.
NULL

#
# These tags are here to explicitely show what is imported
#
#' @import stats
#' @import utils

# Spatialwarnings will load the `future` package at boot, but does not use 
# directly its functions. Here we import plan() explicitely to make sure 
# check() does not complain that we depend on a package we don't use. 
#
#'@importFrom future plan 
future::plan

Try the spatialwarnings package in your browser

Any scripts or data that you put into this service are public.

spatialwarnings documentation built on March 21, 2022, 5:08 p.m.