NSR_template {NSR} | R Documentation |
NSR_template builds a template that can be populated to submit an NSR query.
NSR_template(nrow = 1)
nrow |
The number of rows to include in the template |
Template data.frame that can be populated and then used in NSR queries.
## Not run:
template<-NSR_template(nrow = 2)
template$genus<-"Acer"
template$species<-c("Acer rubrum", "Acer saccharum")
template$country<-"Canada"
template$user_id<-1:2
results <- NSR(occurrence_dataframe = template)
## End(Not run)