rfishbase
  
  
    An R interface to the fishbase.org database. 
    https://github.com/ropensci/rfishbase
  
      Category: Biosphere
      Sub Category: Marine Life and Fishery
    
Keywords
fish fishbase r r-package rstats taxonomy
Keywords from Contributors
ecology biodiversity genome biology taxize darwincore geocode occurrences fisheries nomenclature
        Last synced: about 5 hours ago 
        JSON representation
    
Repository metadata
R interface to the fishbase.org database
- Host: GitHub
 - URL: https://github.com/ropensci/rfishbase
 - Owner: ropensci
 - Created: 2011-11-18T01:03:37.000Z (almost 14 years ago)
 - Default Branch: master
 - Last Pushed: 2024-12-29T03:25:33.000Z (10 months ago)
 - Last Synced: 2025-10-29T03:59:08.098Z (6 days ago)
 - Topics: fish, fishbase, r, r-package, rstats, taxonomy
 - Language: R
 - Homepage: https://docs.ropensci.org/rfishbase
 - Size: 265 MB
 - Stars: 121
 - Watchers: 19
 - Forks: 40
 - Open Issues: 38
 - Releases: 12
 - 
            Metadata Files:
            
- Readme: README.Rmd
 - Changelog: NEWS.md
 - Contributing: .github/CONTRIBUTING.md
 - Codemeta: codemeta.json
 
 
README.Rmd
          ---
output: github_document
---
# rfishbase 
[](https://github.com/ropensci/rfishbase/actions/workflows/R-CMD-check.yaml)
[](https://app.codecov.io/github/ropensci/rfishbase?branch=master)
[](https://github.com/ropensci/software-review/issues/137)
[](https://cran.r-project.org/package=rfishbase)
[](https://github.com/r-hub/cranlogs.app)
Welcome to `rfishbase 5`! This is the fourth rewrite of the original `rfishbase` package described in [Boettiger et al. (2012)](https://doi.org/10.1111/j.1095-8649.2012.03464.x).   
Another streamlined re-design following new abilities for data hosting and access.
This release relies on a HuggingFace datasets hosting for data and metadata hosting
in parquet and schema.org.  
Data access is simplified to use the simple HuggingFace datasets API instead
of the previous contentid-based resolution. This allows metadata to be defined
with directly alongside the data platform independent of the R package.  
A simplified access protocol relies on `duckdbfs` for direct reads of tables.
Several functions previously used only to manage connections are now deprecated
or removed, along with a significant number of dependencies.
Core use still centers around the same package API using the `fb_tbl()` function,
with legacy helper functions for common tables like `species()` are still accessible and
can still optionally filter by species name where appropriate.  As before, loading the
full tables and sub-setting manually is still recommended.
Historic helper  functions like `load_taxa()` (combining the taxonomic classification from Species,
Genus, Family and Order tables), `validate_names()`, and `common_to_sci()` and 
`sci_to_common()` should be in working order, all using table-based outputs.
- `rfishbase 1.0` relied on parsing of XML pages served directly from Fishbase.org.  
- `rfishbase 2.0` relied on calls to a ruby-based API, `fishbaseapi`, that provided access to SQL snapshots of about 20 of the more popular tables in FishBase or SeaLifeBase.
- `rfishbase 3.0` side-stepped the API by making queries which directly downloaded compressed csv tables from a static web host. This substantially improved performance a reliability, particularly for large queries. The release largely remained backwards compatible with 2.0, and added more tables.
- `rfishbase 4.0` extends the static model and interface. Static tables are distributed in parquet and accessed through a provenance-based identifier. While old functions are retained, a new interface is introduced to provide easy access to all fishbase tables.
We welcome any feedback, issues or questions that users may encounter through our issues tracker on GitHub: 
```{r include=FALSE}
knitr::opts_chunk$set(warning=FALSE, comment=NA)
options("rfishbase_local_db" = FALSE)
```
## Installation
```{r message=FALSE, warning=FALSE, results="hide", eval=FALSE}
remotes::install_github("ropensci/rfishbase")
```
```{r message=FALSE, warning=FALSE, results="hide"}
library("rfishbase")
library("dplyr") # convenient but not required
```
## Getting started
## Generic table interface
All fishbase tables can be accessed by name using the `fb_tbl()` function:
```{r}
fb_tbl("ecosystem")
```
You can see all the tables using `fb_tables()` to see a list of all the table names (specify `sealifebase` if desired). Careful, there are a lot of them! The fishbase databases have grown a lot in the decades, and were not intended to be used directly by most end-users, so you may have considerable work to determine what's what. Keep in mind that many variables can be estimated in different ways (e.g. trophic level), and thus may report different values in different tables.  Also note that species is name (or SpecCode) is not always the primary key for a table -- many tables are specific to stocks or even individual samples, and some tables are reference lists that are not species focused at all, but meant to be joined to other tables (`faoareas`, etc).  Compare tables against what you see on fishbase.org, or ask on our issues forum for advice!
```{r}
fish <- c("Oreochromis niloticus", "Salmo trutta")
fb_tbl("species") %>% 
  mutate(sci_name = paste(Genus, Species)) %>%
  filter(sci_name %in% fish) %>% 
  select(sci_name, FBname, Length)
```
In most tables, species are identified by `SpecCode` (as per best practices) rather than scientific names.  Multiple tables can be joined on the `SpecCode` to more fully describe a species.  
To filter species by taxonomic names, use the taxa table from `load_taxa()`, which provides a joined table of taxonomy from subspecies up through Class, along with the corresponding FishBase taxon ids codes.  Here is an example workflow joining two of the spawning tables and filtering to the grouper family, _Epinephelidae_:
```{r  message=FALSE}
library(rfishbase)
library(dplyr)
## Get the whole spawning and spawn agg table, joined together:
spawn <- left_join(fb_tbl("spawning"),  
                   fb_tbl("spawnagg"), 
                   relationship = "many-to-many")
# Filter taxa down to the desired species
groupers <- load_taxa() |> filter(Family == "Epinephelidae")
## A "filtering join" (inner join) 
spawn |> inner_join(groupers)
```
## Species Names
Always keep in mind that taxonomy is a dynamic concept. Species can be split or lumped based on new evidence, and naming authorities can disagree over which name is an 'accepted name' or 'synonym' for any given species. When providing your own list of species names, consider first checking that those names are "valid" in the current taxonomy established by FishBase:
```{r message=FALSE}
validate_names("Abramites ternetzi")
```
`rfishbase` can also provide tables of `synonyms()`, a table of `common_names()` in multiple languages, and convert `common_to_sci()` or `sci_to_common()`
```{r message=FALSE}
common_to_sci(c("Bicolor cleaner wrasse", "humphead parrotfish"), Language="English")
```
Note that the results are returned as a table, potentially indicating other common names for the same species, as well as potentially different species that match the provided common name! Please always be careful with names, and use unique SpecCodes to refer to unique species.  
## SeaLifeBase
SeaLifeBase.org is maintained by the same organization and largely parallels the database structure of Fishbase. As such, almost all `rfishbase` functions can instead be instructed to address the 
```{r}
fb_tbl("species", "sealifebase")
```
## Versions and importing all tables
By default, tables are downloaded the first time they are used.  `rfishbase` defaults to download the latest available snapshot; be aware that the most recent snapshot may be months behind the latest data on fishbase.org. Check available releases:
```{r}
available_releases()
```
-----------
Please note that this package is released with a [Contributor Code of Conduct](https://ropensci.org/code-of-conduct/). By contributing to this project, you agree to abide by its terms.
[](https://ropensci.org)
         
  
    
      Owner metadata
- Name: rOpenSci
 - Login: ropensci
 - Email: info@ropensci.org
 - Kind: organization
 - Description:
 - Website: https://ropensci.org/
 - Location: Berkeley, CA
 - Twitter: rOpenSci
 - Company:
 - Icon url: https://avatars.githubusercontent.com/u/1200269?v=4
 - Repositories: 307
 - Last ynced at: 2023-03-10T20:30:59.242Z
 - Profile URL: https://github.com/ropensci
 
GitHub Events
Total
- Issues event: 16
 - Watch event: 8
 - Issue comment event: 32
 - Push event: 2
 - Pull request event: 5
 - Fork event: 5
 
Last Year
- Issues event: 11
 - Watch event: 8
 - Issue comment event: 29
 - Push event: 2
 - Pull request event: 5
 - Fork event: 4
 
Committers metadata
Last synced: 6 days ago
            Total Commits: 588
            Total Committers: 18
            Avg Commits per committer: 32.667
            Development Distribution Score (DDS): 0.204
          
              Commits in past year: 8
              Committers  in past year: 2
              Avg Commits per committer in past year: 4.0
              Development Distribution Score (DDS)  in past year: 0.125
            
| Name | Commits | |
|---|---|---|
| Carl Boettiger | c****g@g****m | 468 | 
| Scott Chamberlain | m****s@g****m | 47 | 
| Carl Boettiger | c****g@g****m | 19 | 
| Philipp Neubauer | n****l@g****m | 12 | 
| rstudio | r****o@e****m | 10 | 
| Carl Boettiger | c****l@r****g | 7 | 
| Guohuan Su | 3****u | 7 | 
| Tim Poisot | t****t@u****a | 4 | 
| Harry Ganz | h****z@r****u | 3 | 
| Karthik Ram | k****m@g****m | 2 | 
| Tim Poisot | t****t@g****m | 2 | 
| Cotton Rockwood | c****d@g****m | 1 | 
| Kevin Cazelles | k****e@u****a | 1 | 
| jsta | j****k@u****u | 1 | 
| rOpenSci Bot | m****t@g****m | 1 | 
| Ben Raymond | b****d@a****u | 1 | 
| Casey O'Hara | c****a@g****m | 1 | 
| Harry Ganz | h****z | 1 | 
Committer domains:
- aad.gov.au: 1
 - utexas.edu: 1
 - uoguelph.ca: 1
 - rsmas.miami.edu: 1
 - uqar.ca: 1
 - ropensci.org: 1
 
Issue and Pull Request metadata
Last synced: 4 days ago
            Total issues: 272
            Total pull requests: 40
            Average time to close issues: 9 months
            Average time to close pull requests: about 2 months
            Total issue authors: 167
            Total pull request authors: 13
            Average comments per issue: 3.78
            Average comments per pull request: 1.28
            Merged pull request: 33
            Bot issues: 0
            Bot pull requests: 0
          
            Past year issues: 13
            Past year pull requests: 6
            Past year average time to close issues: about 18 hours
            Past year average time to close pull requests: about 8 hours
            Past year issue authors: 12
            Past year pull request authors: 1
            Past year average comments per issue: 1.46
            Past year average comments per pull request: 0.83
            Past year merged pull request: 2
            Past year bot issues: 0
            Past year bot pull requests: 0
        
Top Issue Authors
- cboettig (41)
 - sckott (20)
 - amroco (7)
 - jatalah (5)
 - andybeet (5)
 - melissaszy (4)
 - jebyrnes (3)
 - nschiett (3)
 - reginaldo-re (3)
 - CottonRockwood (3)
 - kairos35 (3)
 - miriamgrace (2)
 - kellijohnson-NOAA (2)
 - mlandis (2)
 - ceri-w (2)
 
Top Pull Request Authors
- cboettig (14)
 - guohuansu (6)
 - sckott (5)
 - Philipp-Neubauer (4)
 - karthik (2)
 - tpoisot (2)
 - raymondben (1)
 - kant (1)
 - jsta (1)
 - CottonRockwood (1)
 - harryganz (1)
 - oharac (1)
 - KevCaz (1)
 
Top Issue Labels
- bug (11)
 - Done in 2.0 (8)
 - feature request (6)
 - API-related (4)
 - Done in 3.0 (4)
 
Top Pull Request Labels
Package metadata
- Total packages: 2
 - 
        Total downloads: 
        
- cran: 3,320 last-month
 
 - Total docker downloads: 109,117
 - Total dependent packages: 7 (may contain duplicates)
 - Total dependent repositories: 24 (may contain duplicates)
 - Total versions: 31
 - Total maintainers: 1
 
cran.r-project.org: rfishbase
R Interface to 'FishBase'
- Homepage: https://docs.ropensci.org/rfishbase/
 - Documentation: http://cran.r-project.org/web/packages/rfishbase/rfishbase.pdf
 - Licenses: CC0
 - Latest release: 5.0.1 (published 10 months ago)
 - Last Synced: 2025-10-31T18:02:03.519Z (3 days ago)
 - Versions: 29
 - Dependent Packages: 7
 - Dependent Repositories: 24
 - Downloads: 3,320 Last month
 - Docker Downloads: 109,117
 - 
                  Rankings:
                  
- Docker downloads count: 0.045%
 - Forks count: 1.891%
 - Stargazers count: 3.888%
 - Average: 4.981%
 - Dependent repos count: 5.616%
 - Dependent packages count: 6.444%
 - Downloads: 12.002%
 
 - Maintainers (1)
 
proxy.golang.org: github.com/ropensci/rfishbase
- Homepage:
 - Documentation: https://pkg.go.dev/github.com/ropensci/rfishbase#section-documentation
 - Licenses:
 - Latest release: v2.1.1+incompatible (published over 9 years ago)
 - Last Synced: 2025-10-31T18:02:01.931Z (3 days ago)
 - Versions: 2
 - Dependent Packages: 0
 - Dependent Repositories: 0
 - 
                  Rankings:
                  
- Dependent packages count: 5.497%
 - Average: 5.681%
 - Dependent repos count: 5.866%
 
 
Dependencies
- R >= 4.0 depends
 - DBI * imports
 - contentid >= 0.0.15 imports
 - dbplyr * imports
 - dplyr * imports
 - duckdb * imports
 - jsonlite * imports
 - magrittr * imports
 - memoise * imports
 - methods * imports
 - progress * imports
 - purrr * imports
 - readr >= 2.0.0 imports
 - rlang * imports
 - rstudioapi * imports
 - stringr * imports
 - tibble * imports
 - tools * imports
 - utils * imports
 - covr * suggests
 - knitr * suggests
 - rmarkdown * suggests
 - spelling * suggests
 - testthat * suggests
 
- actions/checkout v3 composite
 - r-lib/actions/check-r-package v2 composite
 - r-lib/actions/setup-pandoc v2 composite
 - r-lib/actions/setup-r v2 composite
 - r-lib/actions/setup-r-dependencies v2 composite
 
Score: 19.5897444319384