Scraping Flora of North America
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
So Flora of North America is an awesome collection of taxonomic information for plants across the continent. However, the information within is not easily machine readable.
So, a little web scraping is called for.
rfna is an R package to collect information from the Flora of North America.
So far, you can: 1. Get taxonomic names from web pages that index the names. 2. Then get daughter URLs for those taxa, which then have their own 2nd order daughter URLs you can scrape, or scrape the 1st order daughter page. 3. Query Asteraceae taxa for whether they have paleate or epaleate receptacles. This function is something I needed, but more functions will be made like this to get specific traits.
Further functions will do search, etc.
You can install by:
install.packages("devtools")
require(devtools)
install_github("rfna", "rOpenSci")
require(rfna)
Here is an example where a set of URLs is acquired using function getdaughterURLs
, then the function receptacle
is used to ask whether of each the taxa at those URLs have paleate or epaleate receptacles.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.