download_assessment_list {fqar}R Documentation

Download multiple floristic quality assessments

Description

download_assessment_list() searches a specified floristic quality assessment database and retrieves all matches from universalfqa.org. Download speeds from that website may be slow, causing delays in the evaluation of this function.

Usage

download_assessment_list(database_id, ...)

Arguments

database_id

Numeric identifier of the desired floristic quality assessment database, as specified by universalfqa.org. Database id numbers can be viewed with the index_fqa_databases() function.

...

dplyr-style filtering criteria for the desired assessments. The following variables may be used:

  • id (numeric)

  • assessment (character)

  • date (date)

  • location (character)

  • practitioner (character)

Value

A list of data frames matching the search criteria. Each is an untidy data frame in the original format of the Universal FQA website. Use assessment_list_glance() for a tidy summary.

Examples


databases <- index_fqa_databases() # Database 1 is the original 1994 Chicago edition.
somme_assessments <- download_assessment_list(1, site == "Somme Woods")
somme_summary <- assessment_list_glance(somme_assessments)



[Package fqar version 0.5.3 Index]