eb_lifelist: Generate life list

Description Usage Arguments Value Examples

View source: R/eb-lifelist.r

Description

Summarize your eBird data into a life list or year list. Lists can be generated by country.

Usage

1
eb_lifelist(x, year, country)

Arguments

x

eb_sightings object; your personal eBird sightings

year

integer; year or vector of years to calculate list for.

country

character; countries to filter by. Countries can either be expressed as English names or ISO 2-letter country codes. English names are matched via regular expressions using countrycode, so there is some flexibility in names.

Value

A data frame (actually dplyr::tibble) of your list list.

Examples

1
2
3
4
5
6
f <- system.file("extdata/MyEBirdData.csv", package = "auklet")
ebird_data <- eb_sightings(f)
eb_lifelist(ebird_data)

# 2010 year list for canada
eb_lifelist(ebird_data, year = 2010, country = "CA")

mstrimas/auklet documentation built on May 29, 2019, 2:57 p.m.