diff --git a/.travis.yml b/.travis.yml index 67e0c9d..2b97567 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,6 +18,7 @@ r_binary_packages: # Install zoon from Github r_github_packages: - zoonproject/zoon + - goldingn/GRaF # Install devtools to allow travis to work. r_packages: diff --git a/DESCRIPTION b/DESCRIPTION index 47714c7..a7962da 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -34,7 +34,6 @@ Depends: glmnet, rJava, mgcv, - GRaF, sperrorest, SDMTools, randomForest, @@ -53,4 +52,4 @@ Suggests: roxygen2 VignetteBuilder: knitr LazyData: TRUE -RoxygenNote: 6.0.1 +RoxygenNote: 6.1.0 diff --git a/R/MaxEnt.R b/R/MaxEnt.R index 85796bf..fb1e441 100644 --- a/R/MaxEnt.R +++ b/R/MaxEnt.R @@ -2,13 +2,13 @@ #' #' @description Model module to fit MaxEnt model via the dismo package #' -#'@details In order to fit a MaxEnt model, you must first download the +#' @details In order to fit a MaxEnt model, you must first download the #' MaxEnt executable file \code{maxent.jar} and save it in the correct location. #' The zoon function \code{GetMaxEnt} can orchestrate this for you. #' Running MaxEnt also requires an up-to-date version of java #' (which you may already have installed). #' -#'@param .df \strong{Internal parameter, do not use in the workflow function}. +#' @param .df \strong{Internal parameter, do not use in the workflow function}. #' \code{.df} is data frame that combines the occurrence data and covariate #' data. \code{.df} is passed automatically in workflow from the process #' module(s) to the model module(s) and should not be passed by the user. @@ -21,20 +21,36 @@ #' (which may or may not be up-to-date) in this forum: #' \url{https://groups.google.com/d/msg/maxent/yRBlvZ1_9rQ/Fj8Two0lmHIJ}. #' +#' @param path Filepath to choose where to save MaxEnt's html output file. Defaults +#' to getwd(). +#' +#' @param factors Character string of the name of variables to be treated as factors. +#' #' @seealso \code{\link{dismo::maxent}} #' -#' @author ZOON Developers, \email{zoonproject@@gmail.com} -#' @section Version: 1.0 +#' @author ZOON Developers, David Wilkinson \email{zoonproject@@gmail.com} +#' @section Version: 1.1 #' @section Date submitted: 2015-11-13 +#' @section Date modified: 2018-04-24 #' @section Data type: presence/background #' #' @name MaxEnt #' @family model -MaxEnt <- function(.df, args = ''){ + +MaxEnt <- function(.df, + args = '', + path = getwd(), + factors = NULL){ zoon::GetPackage('dismo') zoon::GetPackage('rJava') + if(!is.null(factors)){ + + .df[ , factors] <- as.factor(.df[ , factors]) + + } + covs <- as.data.frame(.df[, attr(.df, 'covCols')]) names(covs) <- attr(.df, 'covCols') @@ -49,7 +65,8 @@ MaxEnt <- function(.df, args = ''){ m <- maxent(x = covs, p = .df$value, - args = args) + args = args, + path = path) # create a ZoonModel object and return it ZoonModel(model = m, @@ -62,9 +79,9 @@ MaxEnt <- function(.df, args = ''){ na_idx <- attr(newdata_clean, 'na.action') if (is.null(na_idx)) idx <- 1:nrow(newdata) else idx <- -na_idx - p[idx] <- dismo::predict(model, - newdata_clean, - type = 'response') + p[idx] <- dismo::predict(model, + newdata_clean, + type = 'response') return (p) }, packages = 'dismo') diff --git a/man/AIC.Rd b/man/AIC.Rd index 7900c7a..1c9d2bf 100644 --- a/man/AIC.Rd +++ b/man/AIC.Rd @@ -54,3 +54,4 @@ Other output: \code{\link{AUC}}, \code{\link{Appify}}, \author{ Liz Martin, \email{lizmartinresearch@gmail.com} } +\concept{output} diff --git a/man/AUC.Rd b/man/AUC.Rd index 35434ec..b0cc42c 100644 --- a/man/AUC.Rd +++ b/man/AUC.Rd @@ -52,3 +52,4 @@ Other output: \code{\link{AIC}}, \code{\link{Appify}}, \author{ Liz Martin, \email{emartin@student.unimelb.edu.au} } +\concept{output} diff --git a/man/AddRandomUniformPredictors.Rd b/man/AddRandomUniformPredictors.Rd index fa67f43..324fcb2 100644 --- a/man/AddRandomUniformPredictors.Rd +++ b/man/AddRandomUniformPredictors.Rd @@ -71,3 +71,4 @@ Other process: \code{\link{BackgroundAndCrossvalid}}, \author{ James Campbell, \email{jamesadamcampbell@gmail.com} } +\concept{process} diff --git a/man/AirNCEP.Rd b/man/AirNCEP.Rd index 29e7186..fae40cb 100644 --- a/man/AirNCEP.Rd +++ b/man/AirNCEP.Rd @@ -34,3 +34,4 @@ Other covariate: \code{\link{Bioclim_future}}, \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{covariate} diff --git a/man/AnophelesPlumbeus.Rd b/man/AnophelesPlumbeus.Rd index 5b68ac7..d919aaa 100644 --- a/man/AnophelesPlumbeus.Rd +++ b/man/AnophelesPlumbeus.Rd @@ -38,8 +38,10 @@ Other occurrence: \code{\link{CWBZimbabwe}}, \code{\link{NaiveRandomPresence}}, \code{\link{SpOcc}}, \code{\link{SugarMaple}}, \code{\link{UKAnophelesPlumbeus}}, - \code{\link{malariaAtlas_PR}} + \code{\link{malariaAtlas_PR}}, + \code{\link{malariaAtlas_VecOcc}} } \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{occurrence} diff --git a/man/Appify.Rd b/man/Appify.Rd index df91cee..13b6a30 100644 --- a/man/Appify.Rd +++ b/man/Appify.Rd @@ -56,3 +56,4 @@ Other output: \code{\link{AIC}}, \code{\link{AUC}}, \author{ ZOON Developers, Tom August, \email{zoonproject@gmail.com} } +\concept{output} diff --git a/man/Background.Rd b/man/Background.Rd index 747a587..f02e14d 100644 --- a/man/Background.Rd +++ b/man/Background.Rd @@ -62,3 +62,4 @@ Other process: \code{\link{AddRandomUniformPredictors}}, \author{ ZOON Developers, Simon Kapitza \email{zoonproject@gmail.com} } +\concept{process} diff --git a/man/BackgroundAndCrossvalid.Rd b/man/BackgroundAndCrossvalid.Rd index f1309c6..6572582 100644 --- a/man/BackgroundAndCrossvalid.Rd +++ b/man/BackgroundAndCrossvalid.Rd @@ -49,3 +49,4 @@ Other process: \code{\link{AddRandomUniformPredictors}}, \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{process} diff --git a/man/Bioclim.Rd b/man/Bioclim.Rd index d2c6a70..e8bb9a9 100644 --- a/man/Bioclim.Rd +++ b/man/Bioclim.Rd @@ -4,7 +4,8 @@ \alias{Bioclim} \title{Covariate module: Bioclim} \usage{ -Bioclim(extent = c(-180, 180, -90, 90), resolution = 10, layers = 1:5) +Bioclim(extent = c(-180, 180, -90, 90), resolution = 10, + layers = 1:5) } \arguments{ \item{extent}{Either a length 4 numeric vector giving min longitude, max longitude, min latitude, max latitude; or an object of class Extent} @@ -39,3 +40,4 @@ Other covariate: \code{\link{AirNCEP}}, \author{ ZOON Developers, \email{zoonproject@@gmail.com} } +\concept{covariate} diff --git a/man/Bioclim_future.Rd b/man/Bioclim_future.Rd index af16dc7..8f10ba2 100644 --- a/man/Bioclim_future.Rd +++ b/man/Bioclim_future.Rd @@ -44,3 +44,4 @@ Other covariate: \code{\link{AirNCEP}}, \author{ F. Rodriguez-Sanchez & E. Van Loon, \email{zoonproject@gmail.com} } +\concept{covariate} diff --git a/man/BiomodModel.Rd b/man/BiomodModel.Rd index 2c3da72..fac1ea6 100644 --- a/man/BiomodModel.Rd +++ b/man/BiomodModel.Rd @@ -53,3 +53,4 @@ Other model: \code{\link{Domain}}, \code{\link{GBM}}, \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{model} diff --git a/man/Bootstrap.Rd b/man/Bootstrap.Rd index a11549d..e9ed41f 100644 --- a/man/Bootstrap.Rd +++ b/man/Bootstrap.Rd @@ -55,3 +55,4 @@ Other process: \code{\link{AddRandomUniformPredictors}}, \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{process} diff --git a/man/CWBZimbabwe.Rd b/man/CWBZimbabwe.Rd index 63fea5b..96561fb 100644 --- a/man/CWBZimbabwe.Rd +++ b/man/CWBZimbabwe.Rd @@ -55,8 +55,10 @@ Other occurrence: \code{\link{AnophelesPlumbeus}}, \code{\link{NaiveRandomPresence}}, \code{\link{SpOcc}}, \code{\link{SugarMaple}}, \code{\link{UKAnophelesPlumbeus}}, - \code{\link{malariaAtlas_PR}} + \code{\link{malariaAtlas_PR}}, + \code{\link{malariaAtlas_VecOcc}} } \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{occurrence} diff --git a/man/CarolinaWrenPA.Rd b/man/CarolinaWrenPA.Rd index 950db8c..9241dab 100644 --- a/man/CarolinaWrenPA.Rd +++ b/man/CarolinaWrenPA.Rd @@ -40,8 +40,10 @@ Other occurrence: \code{\link{AnophelesPlumbeus}}, \code{\link{NaiveRandomPresence}}, \code{\link{SpOcc}}, \code{\link{SugarMaple}}, \code{\link{UKAnophelesPlumbeus}}, - \code{\link{malariaAtlas_PR}} + \code{\link{malariaAtlas_PR}}, + \code{\link{malariaAtlas_VecOcc}} } \author{ Nick Golding, \email{nick.golding.research@gmail.com} } +\concept{occurrence} diff --git a/man/CarolinaWrenPO.Rd b/man/CarolinaWrenPO.Rd index fa99e74..1da956c 100644 --- a/man/CarolinaWrenPO.Rd +++ b/man/CarolinaWrenPO.Rd @@ -34,8 +34,10 @@ Other occurrence: \code{\link{AnophelesPlumbeus}}, \code{\link{NaiveRandomPresence}}, \code{\link{SpOcc}}, \code{\link{SugarMaple}}, \code{\link{UKAnophelesPlumbeus}}, - \code{\link{malariaAtlas_PR}} + \code{\link{malariaAtlas_PR}}, + \code{\link{malariaAtlas_VecOcc}} } \author{ Nick Golding, \email{nick.golding.research@gmail.com} } +\concept{occurrence} diff --git a/man/CarolinaWrenRasters.Rd b/man/CarolinaWrenRasters.Rd index f21dfaa..8f60bd8 100644 --- a/man/CarolinaWrenRasters.Rd +++ b/man/CarolinaWrenRasters.Rd @@ -31,3 +31,4 @@ Other covariate: \code{\link{AirNCEP}}, \author{ Nick Golding, \email{nick.golding.research@gmail.com} } +\concept{covariate} diff --git a/man/CarolinaWrenValidation.Rd b/man/CarolinaWrenValidation.Rd index 69b83b8..1964e23 100644 --- a/man/CarolinaWrenValidation.Rd +++ b/man/CarolinaWrenValidation.Rd @@ -56,3 +56,4 @@ Other process: \code{\link{AddRandomUniformPredictors}}, \author{ Nick Golding, \email{nick.golding.research@gmail.com} } +\concept{process} diff --git a/man/Clean.Rd b/man/Clean.Rd index 5b95721..4937b71 100644 --- a/man/Clean.Rd +++ b/man/Clean.Rd @@ -62,3 +62,4 @@ Other process: \code{\link{AddRandomUniformPredictors}}, \author{ ZOON Developers, David Wilkinson \email{zoonproject@gmail.com} } +\concept{process} diff --git a/man/CoefficientPlot.Rd b/man/CoefficientPlot.Rd index fc9e8af..0a2144b 100644 --- a/man/CoefficientPlot.Rd +++ b/man/CoefficientPlot.Rd @@ -51,3 +51,4 @@ Other output: \code{\link{AIC}}, \code{\link{AUC}}, \author{ Liz Martin, \email{emartin@student.unimelb.edu.au} } +\concept{output} diff --git a/man/CovHistograms.Rd b/man/CovHistograms.Rd index 24d17f6..0614ed8 100644 --- a/man/CovHistograms.Rd +++ b/man/CovHistograms.Rd @@ -51,3 +51,4 @@ Other output: \code{\link{AIC}}, \code{\link{AUC}}, \author{ Saras Windecker, \email{saras.windecker@gmail.com} } +\concept{output} diff --git a/man/Crossvalidate.Rd b/man/Crossvalidate.Rd index 0f9a81d..03edc8e 100644 --- a/man/Crossvalidate.Rd +++ b/man/Crossvalidate.Rd @@ -48,3 +48,4 @@ Other process: \code{\link{AddRandomUniformPredictors}}, \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{process} diff --git a/man/DataSummary.Rd b/man/DataSummary.Rd index 231b5d5..2981946 100644 --- a/man/DataSummary.Rd +++ b/man/DataSummary.Rd @@ -51,3 +51,4 @@ Other output: \code{\link{AIC}}, \code{\link{AUC}}, \author{ David Wilkinson, \email{davidpw@student.unimelb.edu.au} } +\concept{output} diff --git a/man/Deviance.Rd b/man/Deviance.Rd index 81280b5..25db0b5 100644 --- a/man/Deviance.Rd +++ b/man/Deviance.Rd @@ -53,3 +53,4 @@ Other output: \code{\link{AIC}}, \code{\link{AUC}}, \author{ Liz Martin, \email{lizmartinresearch@gmail.com} } +\concept{output} diff --git a/man/Domain.Rd b/man/Domain.Rd index dfdbc5c..cf0da06 100644 --- a/man/Domain.Rd +++ b/man/Domain.Rd @@ -43,3 +43,4 @@ Other model: \code{\link{BiomodModel}}, \code{\link{GBM}}, \author{ Nick Golding, \email{nick.golding.research@gmail.com} } +\concept{model} diff --git a/man/GBM.Rd b/man/GBM.Rd index b70e611..6e68e9a 100644 --- a/man/GBM.Rd +++ b/man/GBM.Rd @@ -52,3 +52,4 @@ Other model: \code{\link{BiomodModel}}, \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{model} diff --git a/man/GenerateCovariateReport.Rd b/man/GenerateCovariateReport.Rd index bf4db8c..83f71c3 100644 --- a/man/GenerateCovariateReport.Rd +++ b/man/GenerateCovariateReport.Rd @@ -53,3 +53,4 @@ Other output: \code{\link{AIC}}, \code{\link{AUC}}, \author{ David Wilkinson, \email{davidpw@student.unimelb.edu.au} } +\concept{output} diff --git a/man/InteractiveCovariateMap.Rd b/man/InteractiveCovariateMap.Rd index b45f673..c316755 100644 --- a/man/InteractiveCovariateMap.Rd +++ b/man/InteractiveCovariateMap.Rd @@ -49,3 +49,4 @@ Other output: \code{\link{AIC}}, \code{\link{AUC}}, \author{ ZOON Developers, David Wilkinson, \email{zoonproject@gmail.com} } +\concept{output} diff --git a/man/InteractiveMap.Rd b/man/InteractiveMap.Rd index c72e242..d8fe0fd 100644 --- a/man/InteractiveMap.Rd +++ b/man/InteractiveMap.Rd @@ -47,3 +47,4 @@ Other output: \code{\link{AIC}}, \code{\link{AUC}}, \author{ ZOON Developers, David Wilkinson \email{zoonproject@gmail.com} } +\concept{output} diff --git a/man/InteractiveOccurrenceMap.Rd b/man/InteractiveOccurrenceMap.Rd index db8d398..f405e42 100644 --- a/man/InteractiveOccurrenceMap.Rd +++ b/man/InteractiveOccurrenceMap.Rd @@ -53,3 +53,4 @@ Other output: \code{\link{AIC}}, \code{\link{AUC}}, \author{ David Wilkinson, \email{davidpw@student.unimelb.edu.au} } +\concept{output} diff --git a/man/JitterOccurrence.Rd b/man/JitterOccurrence.Rd index db10fc6..8369156 100644 --- a/man/JitterOccurrence.Rd +++ b/man/JitterOccurrence.Rd @@ -49,3 +49,4 @@ Other process: \code{\link{AddRandomUniformPredictors}}, \author{ Nick Golding, \email{nick.golding.research@gmail.com} } +\concept{process} diff --git a/man/LocalOccurrenceData.Rd b/man/LocalOccurrenceData.Rd index c60f7db..1448ed4 100644 --- a/man/LocalOccurrenceData.Rd +++ b/man/LocalOccurrenceData.Rd @@ -4,9 +4,10 @@ \alias{LocalOccurrenceData} \title{Occurrence module: LocalOccurrenceData} \usage{ -LocalOccurrenceData(filename = "myData.csv", occurrenceType = "presence", - columns = c(long = "longitude", lat = "latitude", value = "value"), - subsetSpecies = NULL, externalValidation = FALSE) +LocalOccurrenceData(filename = "myData.csv", + occurrenceType = "presence", columns = c(long = "longitude", lat = + "latitude", value = "value"), subsetSpecies = NULL, + externalValidation = FALSE) } \arguments{ \item{filename}{The path to the spreadsheet. The spreadsheet should have a header giving column names. The column names should be "longitude", latitude, and "value". "value" is a numeric such as a proportion, count or presence/absence (1/0). The file can be .csv, .tab, .tsv, or .xlsx} @@ -47,8 +48,10 @@ Other occurrence: \code{\link{AnophelesPlumbeus}}, \code{\link{NaiveRandomPresence}}, \code{\link{SpOcc}}, \code{\link{SugarMaple}}, \code{\link{UKAnophelesPlumbeus}}, - \code{\link{malariaAtlas_PR}} + \code{\link{malariaAtlas_PR}}, + \code{\link{malariaAtlas_VecOcc}} } \author{ ZOON Developers, David Wilkinson, \email{zoonproject@@gmail.com} } +\concept{occurrence} diff --git a/man/LocalOccurrenceDataFrame.Rd b/man/LocalOccurrenceDataFrame.Rd index 2d1f4c4..027ea2a 100644 --- a/man/LocalOccurrenceDataFrame.Rd +++ b/man/LocalOccurrenceDataFrame.Rd @@ -48,8 +48,10 @@ Other occurrence: \code{\link{AnophelesPlumbeus}}, \code{\link{NaiveRandomPresence}}, \code{\link{SpOcc}}, \code{\link{SugarMaple}}, \code{\link{UKAnophelesPlumbeus}}, - \code{\link{malariaAtlas_PR}} + \code{\link{malariaAtlas_PR}}, + \code{\link{malariaAtlas_VecOcc}} } \author{ David Wilkinson, ZOON Developers, \email{davidpw@student.unimelb.edu.au} } +\concept{occurrence} diff --git a/man/LocalRaster.Rd b/man/LocalRaster.Rd index 392d822..c8de0fc 100644 --- a/man/LocalRaster.Rd +++ b/man/LocalRaster.Rd @@ -34,3 +34,4 @@ Other covariate: \code{\link{AirNCEP}}, \author{ Tim Lucas, Samuel Bosch, \email{timcdlucas@gmail.com} } +\concept{covariate} diff --git a/man/LogisticRegression.Rd b/man/LogisticRegression.Rd index 777962c..02866b7 100644 --- a/man/LogisticRegression.Rd +++ b/man/LogisticRegression.Rd @@ -40,3 +40,4 @@ Other model: \code{\link{BiomodModel}}, \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{model} diff --git a/man/LonLatToCovariates.Rd b/man/LonLatToCovariates.Rd index 61e807f..48fb30f 100644 --- a/man/LonLatToCovariates.Rd +++ b/man/LonLatToCovariates.Rd @@ -51,3 +51,4 @@ Other process: \code{\link{AddRandomUniformPredictors}}, \author{ Tim Lucas, \email{timcdlucas@gmail.com} } +\concept{process} diff --git a/man/Lorem_ipsum_UK.Rd b/man/Lorem_ipsum_UK.Rd index a6ad2af..d3e7f03 100644 --- a/man/Lorem_ipsum_UK.Rd +++ b/man/Lorem_ipsum_UK.Rd @@ -34,8 +34,10 @@ Other occurrence: \code{\link{AnophelesPlumbeus}}, \code{\link{NaiveRandomPresence}}, \code{\link{SpOcc}}, \code{\link{SugarMaple}}, \code{\link{UKAnophelesPlumbeus}}, - \code{\link{malariaAtlas_PR}} + \code{\link{malariaAtlas_PR}}, + \code{\link{malariaAtlas_VecOcc}} } \author{ A.B. Ceidi, \email{ABCD@anemail.com} } +\concept{occurrence} diff --git a/man/MESSMask.Rd b/man/MESSMask.Rd index a82fc48..c23e81a 100644 --- a/man/MESSMask.Rd +++ b/man/MESSMask.Rd @@ -54,3 +54,4 @@ Other process: \code{\link{AddRandomUniformPredictors}}, \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{process} diff --git a/man/MachineLearn.Rd b/man/MachineLearn.Rd index f3fb9b9..d102df0 100644 --- a/man/MachineLearn.Rd +++ b/man/MachineLearn.Rd @@ -67,3 +67,4 @@ Other model: \code{\link{BiomodModel}}, \author{ Tim CD Lucas, \email{timcdlucas@gmail.com} } +\concept{model} diff --git a/man/MaxEnt.Rd b/man/MaxEnt.Rd index c0bcfec..fc6ef49 100644 --- a/man/MaxEnt.Rd +++ b/man/MaxEnt.Rd @@ -4,7 +4,7 @@ \alias{MaxEnt} \title{Model module: MaxEnt} \usage{ -MaxEnt(.df, args = "") +MaxEnt(.df, args = "", path = getwd(), factors = NULL) } \arguments{ \item{.df}{\strong{Internal parameter, do not use in the workflow function}. @@ -19,6 +19,11 @@ help files, which list all of the options, aren't available on the web. You could try the MaxEnt graphical user interface, otherwise there is a list (which may or may not be up-to-date) in this forum: \url{https://groups.google.com/d/msg/maxent/yRBlvZ1_9rQ/Fj8Two0lmHIJ}.} + +\item{path}{Filepath to choose where to save MaxEnt's html output file. Defaults +to getwd().} + +\item{factors}{Character string of the name of variables to be treated as factors.} } \description{ Model module to fit MaxEnt model via the dismo package @@ -31,13 +36,17 @@ Running MaxEnt also requires an up-to-date version of java (which you may already have installed). } \section{Version}{ - 1.0 + 1.1 } \section{Date submitted}{ 2015-11-13 } +\section{Date modified}{ + 2018-04-24 +} + \section{Data type}{ presence/background } @@ -56,5 +65,6 @@ Other model: \code{\link{BiomodModel}}, \code{\link{mgcv}} } \author{ -ZOON Developers, \email{zoonproject@gmail.com} +ZOON Developers, David Wilkinson \email{zoonproject@gmail.com} } +\concept{model} diff --git a/man/MaxLike.Rd b/man/MaxLike.Rd index 15ce6be..82c711d 100644 --- a/man/MaxLike.Rd +++ b/man/MaxLike.Rd @@ -71,3 +71,4 @@ Other model: \code{\link{BiomodModel}}, \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{model} diff --git a/man/MaxNet.Rd b/man/MaxNet.Rd index 3511486..677507e 100644 --- a/man/MaxNet.Rd +++ b/man/MaxNet.Rd @@ -4,8 +4,8 @@ \alias{MaxNet} \title{Model module: MaxNet} \usage{ -MaxNet(.df, features = "default", regmult = 1, clamp_predictions = TRUE, - prediction_type = "logistic") +MaxNet(.df, features = "default", regmult = 1, + clamp_predictions = TRUE, prediction_type = "logistic") } \arguments{ \item{.df}{\strong{Internal parameter, do not use in the workflow function}. @@ -76,3 +76,4 @@ Other model: \code{\link{BiomodModel}}, \author{ Nick Golding, \email{nick.golding.research@gmail.com} } +\concept{model} diff --git a/man/MyMaxLike.Rd b/man/MyMaxLike.Rd index c25a31d..79dd478 100644 --- a/man/MyMaxLike.Rd +++ b/man/MyMaxLike.Rd @@ -71,3 +71,4 @@ Other model: \code{\link{BiomodModel}}, \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{model} diff --git a/man/NATrees.Rd b/man/NATrees.Rd index cbb1997..7a76697 100644 --- a/man/NATrees.Rd +++ b/man/NATrees.Rd @@ -40,8 +40,10 @@ Other occurrence: \code{\link{AnophelesPlumbeus}}, \code{\link{NaiveRandomPresence}}, \code{\link{SpOcc}}, \code{\link{SugarMaple}}, \code{\link{UKAnophelesPlumbeus}}, - \code{\link{malariaAtlas_PR}} + \code{\link{malariaAtlas_PR}}, + \code{\link{malariaAtlas_VecOcc}} } \author{ Matt Talluto, \email{mtalluto@gmail.com} } +\concept{occurrence} diff --git a/man/NCEP.Rd b/man/NCEP.Rd index 9b44fb7..5ea735c 100644 --- a/man/NCEP.Rd +++ b/man/NCEP.Rd @@ -4,7 +4,8 @@ \alias{NCEP} \title{Covariate module: NCEP} \usage{ -NCEP(extent = c(-5, 5, 50, 60), variables = "hgt", status.bar = FALSE) +NCEP(extent = c(-5, 5, 50, 60), variables = "hgt", + status.bar = FALSE) } \arguments{ \item{extent}{A numeric vector of length 4 giving the coordinates of the @@ -48,3 +49,4 @@ Other covariate: \code{\link{AirNCEP}}, \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{covariate} diff --git a/man/NaiveRandomPresence.Rd b/man/NaiveRandomPresence.Rd index 57a037a..1c82653 100644 --- a/man/NaiveRandomPresence.Rd +++ b/man/NaiveRandomPresence.Rd @@ -4,8 +4,8 @@ \alias{NaiveRandomPresence} \title{Naive Random Presence} \usage{ -NaiveRandomPresence(extent = c(-10, 10, 45, 65), n = 1000, seed = NULL, - projection = NULL) +NaiveRandomPresence(extent = c(-10, 10, 45, 65), n = 1000, + seed = NULL, projection = NULL) } \arguments{ \item{extent}{A numeric vector of length 4 giving the coordinates of the rectangular region within which to create the random points. order: xmin, xmax, ymin, ymax. By default the extent of the UK.} @@ -44,8 +44,10 @@ Other occurrence: \code{\link{AnophelesPlumbeus}}, \code{\link{NaiveRandomPresenceAbsence}}, \code{\link{SpOcc}}, \code{\link{SugarMaple}}, \code{\link{UKAnophelesPlumbeus}}, - \code{\link{malariaAtlas_PR}} + \code{\link{malariaAtlas_PR}}, + \code{\link{malariaAtlas_VecOcc}} } \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{occurrence} diff --git a/man/NaiveRandomPresenceAbsence.Rd b/man/NaiveRandomPresenceAbsence.Rd index 200537f..41ee9f0 100644 --- a/man/NaiveRandomPresenceAbsence.Rd +++ b/man/NaiveRandomPresenceAbsence.Rd @@ -46,8 +46,10 @@ Other occurrence: \code{\link{AnophelesPlumbeus}}, \code{\link{NaiveRandomPresence}}, \code{\link{SpOcc}}, \code{\link{SugarMaple}}, \code{\link{UKAnophelesPlumbeus}}, - \code{\link{malariaAtlas_PR}} + \code{\link{malariaAtlas_PR}}, + \code{\link{malariaAtlas_VecOcc}} } \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{occurrence} diff --git a/man/NaiveRandomRaster.Rd b/man/NaiveRandomRaster.Rd index 6deb2f2..15aebb6 100644 --- a/man/NaiveRandomRaster.Rd +++ b/man/NaiveRandomRaster.Rd @@ -4,8 +4,8 @@ \alias{NaiveRandomRaster} \title{Naive Random Raster} \usage{ -NaiveRandomRaster(extent = c(-10, 10, 45, 65), res = 0.5, seed = NULL, - projection = "+proj=longlat +datum=WGS84") +NaiveRandomRaster(extent = c(-10, 10, 45, 65), res = 0.5, + seed = NULL, projection = "+proj=longlat +datum=WGS84") } \arguments{ \item{extent}{A numeric vector of length 4 giving the coordinates of the rectangular region within which to create the raaster. order: xmin, xmax, ymin, ymax. By default the extent of the UK} @@ -41,3 +41,4 @@ Other covariate: \code{\link{AirNCEP}}, \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{covariate} diff --git a/man/NoOutput.Rd b/man/NoOutput.Rd index 8c1426b..c07ff42 100644 --- a/man/NoOutput.Rd +++ b/man/NoOutput.Rd @@ -52,3 +52,4 @@ Other output: \code{\link{AIC}}, \code{\link{AUC}}, \author{ Tim Lucas, \email{timcdlucas@gmail.com} } +\concept{output} diff --git a/man/NoProcess.Rd b/man/NoProcess.Rd index 4ece8e4..9cbd466 100644 --- a/man/NoProcess.Rd +++ b/man/NoProcess.Rd @@ -49,3 +49,4 @@ Other process: \code{\link{AddRandomUniformPredictors}}, \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{process} diff --git a/man/NullModel.Rd b/man/NullModel.Rd index 617a9b1..86039c0 100644 --- a/man/NullModel.Rd +++ b/man/NullModel.Rd @@ -41,3 +41,4 @@ Other model: \code{\link{BiomodModel}}, \author{ Nick Golding, \email{nick.golding.research@gmail.com} } +\concept{model} diff --git a/man/OneHundredBackground.Rd b/man/OneHundredBackground.Rd index 17042ac..0f06ffe 100644 --- a/man/OneHundredBackground.Rd +++ b/man/OneHundredBackground.Rd @@ -47,3 +47,4 @@ Other process: \code{\link{AddRandomUniformPredictors}}, \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{process} diff --git a/man/OneThousandBackground.Rd b/man/OneThousandBackground.Rd index be22910..32e5164 100644 --- a/man/OneThousandBackground.Rd +++ b/man/OneThousandBackground.Rd @@ -47,3 +47,4 @@ Other process: \code{\link{AddRandomUniformPredictors}}, \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{process} diff --git a/man/OptGRaF.Rd b/man/OptGRaF.Rd index 22b1967..c4d5838 100644 --- a/man/OptGRaF.Rd +++ b/man/OptGRaF.Rd @@ -38,3 +38,4 @@ Other model: \code{\link{BiomodModel}}, \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{model} diff --git a/man/PairPlot.Rd b/man/PairPlot.Rd index 9c82098..73f0013 100644 --- a/man/PairPlot.Rd +++ b/man/PairPlot.Rd @@ -52,3 +52,4 @@ Other output: \code{\link{AIC}}, \code{\link{AUC}}, \author{ Saras Windecker, \email{saras.windecker@gmail.com} } +\concept{output} diff --git a/man/PartitionDisc.Rd b/man/PartitionDisc.Rd index 1c3c2de..3fe4a9c 100644 --- a/man/PartitionDisc.Rd +++ b/man/PartitionDisc.Rd @@ -53,3 +53,4 @@ Other process: \code{\link{AddRandomUniformPredictors}}, \author{ Tom August, \email{tomaug@ceh.ac.uk} } +\concept{process} diff --git a/man/PerformanceMeasures.Rd b/man/PerformanceMeasures.Rd index 41ecce6..5608b43 100644 --- a/man/PerformanceMeasures.Rd +++ b/man/PerformanceMeasures.Rd @@ -64,3 +64,4 @@ Other output: \code{\link{AIC}}, \code{\link{AUC}}, \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{output} diff --git a/man/PredictNewRasterMap.Rd b/man/PredictNewRasterMap.Rd index bb9c843..9d25a01 100644 --- a/man/PredictNewRasterMap.Rd +++ b/man/PredictNewRasterMap.Rd @@ -57,3 +57,4 @@ Other output: \code{\link{AIC}}, \code{\link{AUC}}, \author{ Zoon developers (modified by F. Rodriguez-Sanchez), \email{zoonproject@gmail.com} } +\concept{output} diff --git a/man/PrintMap.Rd b/man/PrintMap.Rd index 096b7d0..1b3ea10 100644 --- a/man/PrintMap.Rd +++ b/man/PrintMap.Rd @@ -83,3 +83,4 @@ Other output: \code{\link{AIC}}, \code{\link{AUC}}, \author{ ZOON Developers, James Campbell, David Wilkinson \email{zoonproject@gmail.com} } +\concept{output} diff --git a/man/PrintOccurrenceMap.Rd b/man/PrintOccurrenceMap.Rd index 8aa9de6..d4fb97d 100644 --- a/man/PrintOccurrenceMap.Rd +++ b/man/PrintOccurrenceMap.Rd @@ -4,8 +4,8 @@ \alias{PrintOccurrenceMap} \title{Output module: PrintOccurrenceMap} \usage{ -PrintOccurrenceMap(.model, .ras, plot = TRUE, dir = NULL, filename = NULL, - size = c(480, 480), res = 72, ...) +PrintOccurrenceMap(.model, .ras, plot = TRUE, dir = NULL, + filename = NULL, size = c(480, 480), res = 72, ...) } \arguments{ \item{.model}{\strong{Internal parameter, do not use in the workflow function}. \code{.model} is list of a data frame (\code{data}) and a model object (\code{model}). \code{.model} is passed automatically in workflow, combining data from the model module(s) and process module(s), to the output module(s) and should not be passed by the user.} @@ -66,3 +66,4 @@ Other output: \code{\link{AIC}}, \code{\link{AUC}}, \author{ Nick Golding, \email{nick.golding.research@gmail.com} } +\concept{output} diff --git a/man/QuickGRaF.Rd b/man/QuickGRaF.Rd index 3c11729..34a79ec 100644 --- a/man/QuickGRaF.Rd +++ b/man/QuickGRaF.Rd @@ -45,3 +45,4 @@ Other model: \code{\link{BiomodModel}}, \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{model} diff --git a/man/ROCcurve.Rd b/man/ROCcurve.Rd index 57c864e..c912aec 100644 --- a/man/ROCcurve.Rd +++ b/man/ROCcurve.Rd @@ -54,3 +54,4 @@ Other output: \code{\link{AIC}}, \code{\link{AUC}}, \author{ E.E. van Loon, \email{e.e.vanloonD@uva.nl} } +\concept{output} diff --git a/man/RandomForest.Rd b/man/RandomForest.Rd index 01936a4..1d2e1a4 100644 --- a/man/RandomForest.Rd +++ b/man/RandomForest.Rd @@ -41,3 +41,4 @@ Other model: \code{\link{BiomodModel}}, \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{model} diff --git a/man/ReliabilityPlot.Rd b/man/ReliabilityPlot.Rd index 9124d32..c2da01d 100644 --- a/man/ReliabilityPlot.Rd +++ b/man/ReliabilityPlot.Rd @@ -53,3 +53,4 @@ Other output: \code{\link{AIC}}, \code{\link{AUC}}, \author{ Liz Martin, \email{lizmartinresearch@gmail.com} } +\concept{output} diff --git a/man/RemoveNAs.Rd b/man/RemoveNAs.Rd index 68dd708..9c9a6dd 100644 --- a/man/RemoveNAs.Rd +++ b/man/RemoveNAs.Rd @@ -52,3 +52,4 @@ Other process: \code{\link{AddRandomUniformPredictors}}, \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{process} diff --git a/man/ResponseCurve.Rd b/man/ResponseCurve.Rd index a66e526..335297d 100644 --- a/man/ResponseCurve.Rd +++ b/man/ResponseCurve.Rd @@ -50,3 +50,4 @@ Other output: \code{\link{AIC}}, \code{\link{AUC}}, \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{output} diff --git a/man/ResponseCurveViz.Rd b/man/ResponseCurveViz.Rd index b6228db..ed7fb6f 100644 --- a/man/ResponseCurveViz.Rd +++ b/man/ResponseCurveViz.Rd @@ -53,3 +53,4 @@ Other output: \code{\link{AIC}}, \code{\link{AUC}}, \author{ G. McInerny, \email{gmcinerny@hotmail.com} } +\concept{output} diff --git a/man/ResponsePlot.Rd b/man/ResponsePlot.Rd index 1ad12ea..4c825d2 100644 --- a/man/ResponsePlot.Rd +++ b/man/ResponsePlot.Rd @@ -54,3 +54,4 @@ Other output: \code{\link{AIC}}, \code{\link{AUC}}, \author{ Liz Martin, \email{emartin@student.unimelb.edu.au} } +\concept{output} diff --git a/man/SameTimePlaceMap.Rd b/man/SameTimePlaceMap.Rd index 439b845..d02ee68 100644 --- a/man/SameTimePlaceMap.Rd +++ b/man/SameTimePlaceMap.Rd @@ -48,3 +48,4 @@ Other output: \code{\link{AIC}}, \code{\link{AUC}}, \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{output} diff --git a/man/SeparatePA.Rd b/man/SeparatePA.Rd index 30a0195..dc64a84 100644 --- a/man/SeparatePA.Rd +++ b/man/SeparatePA.Rd @@ -51,3 +51,4 @@ Other output: \code{\link{AIC}}, \code{\link{AUC}}, \author{ E.E. van Loon, \email{e.e.vanloonD@uva.nl} } +\concept{output} diff --git a/man/SpOcc.Rd b/man/SpOcc.Rd index d1e4d81..0b51c43 100644 --- a/man/SpOcc.Rd +++ b/man/SpOcc.Rd @@ -55,8 +55,10 @@ Other occurrence: \code{\link{AnophelesPlumbeus}}, \code{\link{NaiveRandomPresence}}, \code{\link{SugarMaple}}, \code{\link{UKAnophelesPlumbeus}}, - \code{\link{malariaAtlas_PR}} + \code{\link{malariaAtlas_PR}}, + \code{\link{malariaAtlas_VecOcc}} } \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{occurrence} diff --git a/man/StandardiseCov.Rd b/man/StandardiseCov.Rd index fb66e87..5546504 100644 --- a/man/StandardiseCov.Rd +++ b/man/StandardiseCov.Rd @@ -51,3 +51,4 @@ Other process: \code{\link{AddRandomUniformPredictors}}, \author{ Alison Johnston & Carsten F. Dormann, \email{alison.johnston@bto.org} } +\concept{process} diff --git a/man/StochasticLogisticRegression.Rd b/man/StochasticLogisticRegression.Rd index 80452d3..9d1be48 100644 --- a/man/StochasticLogisticRegression.Rd +++ b/man/StochasticLogisticRegression.Rd @@ -40,3 +40,4 @@ Other model: \code{\link{BiomodModel}}, \author{ Nick Golding, \email{nick.golding.research@gmail.com} } +\concept{model} diff --git a/man/SubsampleOccurrence.Rd b/man/SubsampleOccurrence.Rd index dde81e4..be5d4c1 100644 --- a/man/SubsampleOccurrence.Rd +++ b/man/SubsampleOccurrence.Rd @@ -54,3 +54,4 @@ Other process: \code{\link{AddRandomUniformPredictors}}, \author{ Nick Golding, \email{nick.golding.research@gmail.com} } +\concept{process} diff --git a/man/SugarMaple.Rd b/man/SugarMaple.Rd index a1d67ab..885ee08 100644 --- a/man/SugarMaple.Rd +++ b/man/SugarMaple.Rd @@ -34,8 +34,10 @@ Other occurrence: \code{\link{AnophelesPlumbeus}}, \code{\link{NaiveRandomPresenceAbsence}}, \code{\link{NaiveRandomPresence}}, \code{\link{SpOcc}}, \code{\link{UKAnophelesPlumbeus}}, - \code{\link{malariaAtlas_PR}} + \code{\link{malariaAtlas_PR}}, + \code{\link{malariaAtlas_VecOcc}} } \author{ Matt Talluto & Nick Golding, \email{mtalluto@gmail.com} } +\concept{occurrence} diff --git a/man/SurfaceMap.Rd b/man/SurfaceMap.Rd index b274fb2..09e6ea7 100644 --- a/man/SurfaceMap.Rd +++ b/man/SurfaceMap.Rd @@ -46,3 +46,4 @@ Other output: \code{\link{AIC}}, \code{\link{AUC}}, \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{output} diff --git a/man/TargetGroupBackground.Rd b/man/TargetGroupBackground.Rd index 77e3646..ddd4b61 100644 --- a/man/TargetGroupBackground.Rd +++ b/man/TargetGroupBackground.Rd @@ -52,3 +52,4 @@ Other process: \code{\link{AddRandomUniformPredictors}}, \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{process} diff --git a/man/Transform.Rd b/man/Transform.Rd index e2778e1..fddcbab 100644 --- a/man/Transform.Rd +++ b/man/Transform.Rd @@ -54,3 +54,4 @@ Other process: \code{\link{AddRandomUniformPredictors}}, \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{process} diff --git a/man/UKAir.Rd b/man/UKAir.Rd index c2d3e6a..167f882 100644 --- a/man/UKAir.Rd +++ b/man/UKAir.Rd @@ -28,3 +28,4 @@ Other covariate: \code{\link{AirNCEP}}, \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{covariate} diff --git a/man/UKAnophelesPlumbeus.Rd b/man/UKAnophelesPlumbeus.Rd index 308cc4a..abda3c6 100644 --- a/man/UKAnophelesPlumbeus.Rd +++ b/man/UKAnophelesPlumbeus.Rd @@ -31,8 +31,10 @@ Other occurrence: \code{\link{AnophelesPlumbeus}}, \code{\link{Lorem_ipsum_UK}}, \code{\link{NATrees}}, \code{\link{NaiveRandomPresenceAbsence}}, \code{\link{NaiveRandomPresence}}, \code{\link{SpOcc}}, - \code{\link{SugarMaple}}, \code{\link{malariaAtlas_PR}} + \code{\link{SugarMaple}}, \code{\link{malariaAtlas_PR}}, + \code{\link{malariaAtlas_VecOcc}} } \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{occurrence} diff --git a/man/UKBioclim.Rd b/man/UKBioclim.Rd index 6e2c396..9d5e5c8 100644 --- a/man/UKBioclim.Rd +++ b/man/UKBioclim.Rd @@ -36,3 +36,4 @@ Other covariate: \code{\link{AirNCEP}}, \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{covariate} diff --git a/man/VariableImportance.Rd b/man/VariableImportance.Rd index da3e556..1d9b29f 100644 --- a/man/VariableImportance.Rd +++ b/man/VariableImportance.Rd @@ -53,3 +53,4 @@ Other output: \code{\link{AIC}}, \code{\link{AUC}}, \author{ Tom August, \email{tomaug@ceh.ac.uk} } +\concept{output} diff --git a/man/addInteraction.Rd b/man/addInteraction.Rd index 2d4b25b..682402e 100644 --- a/man/addInteraction.Rd +++ b/man/addInteraction.Rd @@ -51,3 +51,4 @@ Other process: \code{\link{AddRandomUniformPredictors}}, \author{ Alison Johnston & Carsten F. Dormann, \email{alison.johnston@bto.org} } +\concept{process} diff --git a/man/malariaAtlas_PR.Rd b/man/malariaAtlas_PR.Rd index 4cbea53..b9969f6 100644 --- a/man/malariaAtlas_PR.Rd +++ b/man/malariaAtlas_PR.Rd @@ -78,8 +78,10 @@ Other occurrence: \code{\link{AnophelesPlumbeus}}, \code{\link{NaiveRandomPresenceAbsence}}, \code{\link{NaiveRandomPresence}}, \code{\link{SpOcc}}, \code{\link{SugarMaple}}, - \code{\link{UKAnophelesPlumbeus}} + \code{\link{UKAnophelesPlumbeus}}, + \code{\link{malariaAtlas_VecOcc}} } \author{ Tim Lucas, \email{timcdlucas@gmail.com} } +\concept{occurrence} diff --git a/man/malariaAtlas_VecOcc.Rd b/man/malariaAtlas_VecOcc.Rd new file mode 100644 index 0000000..d4cfbfe --- /dev/null +++ b/man/malariaAtlas_VecOcc.Rd @@ -0,0 +1,64 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/malariaAtlas_VecOcc.R +\name{malariaAtlas_VecOcc} +\alias{malariaAtlas_VecOcc} +\title{Occurrence module: malariaAtlas_VecOcc} +\usage{ +malariaAtlas_VecOcc(country = NULL, ISO = "MMR", extent = NULL, + species = "Anopheles dirus", year = NULL, fold = 1) +} +\arguments{ +\item{country}{Character vector containing names of desired countries, +e.g. c("Country1", "Country2", ...) OR = "ALL" (use exactly one of +country, ISO and extent).} + +\item{ISO}{Character vector containing ISO3 code for desired country, +e.g. c("XXX", "YYY", ...) OR = "ALL" (use exactly one of + country, ISO and extent).} + +\item{extent}{Numeric vector containing bounding box values for desired +area. In the order xmin, xman, ymin, ymax. (use exactly one of + country, ISO and extent).} + +\item{species}{String containing name of desired species} + +\item{year}{Vector of years for which to keep data. NULL keeps all years.} + +\item{fold}{Control the validation. If 0, all data is validation data. +If 1, all data is training data.} +} +\description{ +Occurrence module to collect malaria vector occurrence data + from the Malaria Atlas Project database. +} +\section{Version}{ + 1.0 +} + +\section{Date submitted}{ + 2018-09-26 +} + +\section{Data type}{ + presence-only +} + +\seealso{ +\code{\link{malariaAtlas::getVecOcc}} + +Other occurrence: \code{\link{AnophelesPlumbeus}}, + \code{\link{CWBZimbabwe}}, \code{\link{CarolinaWrenPA}}, + \code{\link{CarolinaWrenPO}}, + \code{\link{LocalOccurrenceDataFrame}}, + \code{\link{LocalOccurrenceData}}, + \code{\link{Lorem_ipsum_UK}}, \code{\link{NATrees}}, + \code{\link{NaiveRandomPresenceAbsence}}, + \code{\link{NaiveRandomPresence}}, \code{\link{SpOcc}}, + \code{\link{SugarMaple}}, + \code{\link{UKAnophelesPlumbeus}}, + \code{\link{malariaAtlas_PR}} +} +\author{ +Suzanne H Keddie, \email{suzanne.keddie@bdi.ox.ac.uk} +} +\concept{occurrence} diff --git a/man/malariaAtlas_covariates.Rd b/man/malariaAtlas_covariates.Rd index 45cb129..9297d46 100644 --- a/man/malariaAtlas_covariates.Rd +++ b/man/malariaAtlas_covariates.Rd @@ -48,3 +48,4 @@ Other covariate: \code{\link{AirNCEP}}, \author{ Tim Lucas, \email{timcdlucas@gmail.com} } +\concept{covariate} diff --git a/man/mgcv.Rd b/man/mgcv.Rd index 0fe2817..eb6c26f 100644 --- a/man/mgcv.Rd +++ b/man/mgcv.Rd @@ -52,3 +52,4 @@ Other model: \code{\link{BiomodModel}}, \author{ ZOON Developers, \email{zoonproject@gmail.com} } +\concept{model} diff --git a/man/spThin.Rd b/man/spThin.Rd index 2647668..2c80758 100644 --- a/man/spThin.Rd +++ b/man/spThin.Rd @@ -49,3 +49,4 @@ Other process: \code{\link{AddRandomUniformPredictors}}, \author{ Nick Golding, \email{nick.golding.research@gmail.com} } +\concept{process}