knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.path = "man/figures/README-", out.width = "100%" )
The goal of plantr is to provide a simple R wrapper around the USDA PLANTS Database API, allowing users to easily download data on plant species as a part of their regular workflow.
You can install the development version of plantr with:
remotes::install_github("mikemahoney218/plantr")
plantr
is a little seedling of a package at the moment, without much in the
way of higher-order functions. With that said, the main workhorse of the package
is already implemented as ptr_search
, letting you search the PLANTS Database
directly from R. Searching the basic API (which returns data on plant names and
USDA symbols) is as simple as:
library(plantr) ptr_search(common_name = "balsam fir")
The full API may also be searched by setting basic
to FALSE
. Note that this
example uses a single USDA plant symbol in order to speed up processing time:
ptr_search(symbol = "ABBAB", basic = FALSE)
Please note that plantr
is still in an experimental phase, and breaking
changes may happen to any function as development continues.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.