andrewdeines / rfishbase

R interface to the fishbase.org database

Home Page:http://ropensci.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status Coverage Status Downloads

Welcome to rfishbase 2.0. This package is a ground-up rewrite of the original rfishbase package described in Boettiger et al. (2012), and is not backwards compatible with the original. The first version of rfishbase relied on the XML summary pages provided by FishBase, which contained relatively incomplete data and have since been deprecated. The package later added functions that relied on HTML scraping of fishbase.org, which was always slow, subject to server instabilities, and carried a greater risk of errors. To address all of these issues, we have now created a stand-alone FishBase API with the blessing of the FishBase.org team, who have kindly provided copies of the backend SQL database to our team for this purpose. At this time the API does not cover all tables provided by the SQL backend, but does access the largest and most commonly used. A list of all tables available from the API (and from rfishbase) can be seen using the heartbeat() function.

The new rfishbase package queries this API directly rather than the FishBase.org website. This reduces load on the FishBase web servers and increases both the performance and the breadth of data avaialble. rfishbase functions are primarily aimed at facilitating queries for specific data across a given list of many species. This is a task that is common to much scientific research and tedious to perform on the FishBase.org website, which requires a user to visit a separate page for each species. Aimed at scientific use, the rfishbase package returns all data as data.frames, usually organized in "tidy data" style with individual species as rows and observations of species traits as columns (also referred to as fields). Users will frequently have to subset the resulting data frames, or join them with other data frames provided by the package, to obtain the data they need. We recommend the dplyr package to facilitate these tasks, which rfishbase also uses internally.

In having access to much more data, the new rfishbase can be difficult to navigate. We have provided several helper functions for users to discover which tables they need, as illustrated below. Unfortunately, FishBase.org lacks detailed documentation of all of the tables and fields contained in it's database. For the most part, table and column names are self-documenting, but details are often missing which can create a puzzle for researchers trying to figure out precisely what data is provided in a given column. To address this challenge, we have created a crowd-sourced collection of documentation that can be queried from the API to provide more detailed descriptions.

We welcome any feedback, issues or questions that users may encounter through our issues tracker on GitHub: [https://github.com/ropensci/rfishbase/issues].

Installation

install.packages("rfishbase", 
                 repos = c("http://packages.ropensci.org", "http://cran.rstudio.com"), 
                 type="source")
library("rfishbase")

Getting started

FishBase makes it relatively easy to look up a lot of information on most known species of fish. However, looking up a single bit of data, such as the estimated trophic level, for many different species becomes tedious very soon. This is a common reason for using rfishbase. As such, our first step is to assemble a good list of species we are interested in.

Building a species list

Almost all functions in rfishbase take a list (character vector) of species scientific names, for example:

fish <- c("Oreochromis niloticus", "Salmo trutta")

You can also read in a list of names from any existing data you are working with. When providing your own species list, you should always begin by validating the names. Taxonomy is a moving target, and this well help align the scientific names you are using with the names used by FishBase, and alert you to any potential issues:

fish <- validate_names(c("Oreochromis niloticus", "Salmo trutta"))

Another typical use case is in wanting to collect information about all species in a particular taxonomic group, such as a Genus, Family or Order. The function species_list recognizes six taxonomic levels, and can help you generate a list of names of all species in a given group:

fish <- species_list(Genus = "Labroides")
fish
[1] "Labroides bicolor"       "Labroides dimidiatus"   
[3] "Labroides pectoralis"    "Labroides phthirophagus"
[5] "Labroides rubrolabiatus"

rfishbase also recognizes common names. When a common name refers to multiple species, all matching species are returned:

fish <- common_to_sci("trout")
fish
[1] "Salmo trutta"               "Oncorhynchus mykiss"       
[3] "Salvelinus fontinalis"      "Salvelinus alpinus alpinus"
[5] "Lethrinus miniatus"         "Salvelinus malma"          
[7] "Plectropomus leopardus"     "Schizothorax richardsonii" 
[9] "Arripis truttacea"         

Note that there is no need to validate names coming from common_to_sci or species_list, as these will always return valid names.

Getting data

With a species list in place, we are ready to query fishbase for data. Note that if you have a very long list of species, it is always a good idea to try out your intended functions with a subset of that list first to make sure everything is working.

The species() function returns a table containing much (but not all) of the information found on the summary or homepage for a species on fishbase.org. rfishbase functions always return tidy data tables: rows are observations (e.g. a species, individual samples from a species) and columns are variables (fields).

species(fish[1:2])
Source: local data frame [2 x 100]

              sciname        Genus Species SpeciesRefNo          Author
1        Salmo trutta        Salmo  trutta         4779  Linnaeus, 1758
2 Oncorhynchus mykiss Oncorhynchus  mykiss         4706 (Walbaum, 1792)
Variables not shown: FBname (chr), PicPreferredName (chr),
  PicPreferredNameM (lgl), PicPreferredNameF (lgl), PicPreferredNameJ
  (chr), FamCode (int), Subfamily (chr), GenCode (int), SubGenCode (lgl),
  BodyShapeI (chr), Source (chr), AuthorRef (lgl), Remark (lgl), TaxIssue
  (int), Fresh (int), Brack (int), Saltwater (int), DemersPelag (chr),
  AnaCat (chr), MigratRef (int), DepthRangeShallow (int), DepthRangeDeep
  (int), DepthRangeRef (int), DepthRangeComShallow (lgl),
  DepthRangeComDeep (int), DepthComRef (lgl), LongevityWild (dbl),
  LongevityWildRef (int), LongevityCaptive (dbl), LongevityCapRef (int),
  Vulnerability (dbl), Length (dbl), LTypeMaxM (chr), LengthFemale (lgl),
  LTypeMaxF (lgl), MaxLengthRef (int), CommonLength (dbl), LTypeComM
  (chr), CommonLengthF (lgl), LTypeComF (lgl), CommonLengthRef (int),
  Weight (dbl), WeightFemale (lgl), MaxWeightRef (int), Pic (chr),
  PictureFemale (lgl), LarvaPic (lgl), EggPic (lgl), ImportanceRef (int),
  Importance (chr), PriceCateg (chr), PriceReliability (chr), Remarks7
  (chr), LandingStatistics (chr), Landings (chr), MainCatchingMethod
  (chr), II (chr), MSeines (int), MGillnets (int), MCastnets (int), MTraps
  (int), MSpears (int), MTrawls (int), MDredges (int), MLiftnets (int),
  MHooksLines (int), MOther (int), UsedforAquaculture (chr), LifeCycle
  (chr), AquacultureRef (int), UsedasBait (chr), BaitRef (lgl), Aquarium
  (chr), AquariumFishII (chr), AquariumRef (int), GameFish (int), GameRef
  (int), Dangerous (chr), DangerousRef (lgl), Electrogenic (chr),
  ElectroRef (lgl), Complete (lgl), GoogleImage (int), Comments (chr),
  Profile (lgl), PD50 (dbl), Emblematic (int), Entered (int), DateEntered
  (chr), Modified (int), DateModified (chr), Expert (int), DateChecked
  (chr), TS (lgl), SpecCode (int)

Most tables contain many fields. To avoid overly cluttering the screen, rfishbase displays tables as data_frame objects from the dplyr package. These act just like the familiar data.frames of base R except that they print to the screen in a more tidy fashion. Note that columns that cannot fit easily in the display are summarized below the table. This gives us an easy way to see what fields are available in a given table. For instance, from this table we may only be interested in the PriceCateg (Price category) and the Vulnerability of the species. We can repeat the query for our full species list, asking for only these fields to be returned:

dat <- species(fish, fields=c("SpecCode", "PriceCateg", "Vulnerability"))
dat
Source: local data frame [9 x 4]

                     sciname PriceCateg Vulnerability SpecCode
1               Salmo trutta  very high         59.96      238
2        Oncorhynchus mykiss        low         36.29      239
3      Salvelinus fontinalis  very high         43.37      246
4 Salvelinus alpinus alpinus  very high         74.33      247
5         Lethrinus miniatus  very high         52.78     1858
6           Salvelinus malma  very high         69.97     2691
7     Plectropomus leopardus  very high         51.04     4826
8  Schizothorax richardsonii    unknown         34.78     8705
9          Arripis truttacea    unknown         47.96    14606

FishBase Docs: Discovering data

Unfortunately identifying what fields come from which tables is often a challenge. Each summary page on fishbase.org includes a list of additional tables with more information about species ecology, diet, occurrences, and many other things. rfishbase provides functions that correspond to most of these tables.

Because rfishbase accesses the back end database, it does not always line up with the web display. Frequently rfishbase functions will return more information than is available on the web versions of the these tables. Some information found on the summary homepage for a species is not available from the species summary function, but must be extracted from a different table. For instance, the species Resilience information is not one of the fields in the species summary table, despite appearing on the species homepage of fishbase.org. To discover which table this information is in, we can use the special rfishbase function list_fields, which will list all tables with a field matching the query string:

list_fields("Resilience")
Source: local data frame [2 x 2]

  TABLE_NAME      COLUMN_NAME
1     stocks       Resilience
2     stocks ResilienceRemark

This shows us that this information appears on the stocks table. Working in R, it is easy to query this additional table and combine the results with the data we have collected so far:

resil <- stocks(fish, fields="Resilience")
merge(dat, resil)
                      sciname SpecCode PriceCateg Vulnerability Resilience
1           Arripis truttacea    14606    unknown         47.96     Medium
2          Lethrinus miniatus     1858  very high         52.78     Medium
3         Oncorhynchus mykiss      239        low         36.29     Medium
4      Plectropomus leopardus     4826  very high         51.04     Medium
5                Salmo trutta      238  very high         59.96       High
6                Salmo trutta      238  very high         59.96       <NA>
7                Salmo trutta      238  very high         59.96     Medium
8                Salmo trutta      238  very high         59.96        Low
9                Salmo trutta      238  very high         59.96       <NA>
10               Salmo trutta      238  very high         59.96       <NA>
11               Salmo trutta      238  very high         59.96       <NA>
12 Salvelinus alpinus alpinus      247  very high         74.33        Low
13      Salvelinus fontinalis      246  very high         43.37     Medium
14           Salvelinus malma     2691  very high         69.97        Low
15           Salvelinus malma     2691  very high         69.97       <NA>
16  Schizothorax richardsonii     8705    unknown         34.78     Medium

Sometimes it is more useful to search for a broad description of the tables.

SeaLifeBase

The FishBase team has also created the SeaLifeBase project, which seeks to provide much the same data and layout as fishbase.org and the fishbase schema, but covering all sea life apart from the finfish covered in FishBase. The rOpenSci team has created a pilot API for SeaLifeBase as well. Most of the functions in rfishbase can be used directly to query SeaLifeBase data by explicitly specifying the server argument to use the SeaLifeBase API at http://fishbase.ropensci.org/sealifebase, like so:

options(FISHBASE_API = "http://fishbase.ropensci.org/sealifebase")
kingcrab <- common_to_sci("king crab")
kingcrab
species(kingcrab)
ecology(kingcrab)

Set the API back to fishbase for finfish data:

options(FISHBASE_API = "http://fishbase.ropensci.org")

Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.

ropensci_footer

About

R interface to the fishbase.org database

http://ropensci.org


Languages

Language:R 100.0%