Package 'fishkirkko2015'

Title: Dataset of Measurements of Fish Species at Kirkkojarvi Lake, Finland
Description: Dataset of 302 measurements of 11 fish species to accompany the manuscript "Length-weight relationships of six freshwater fish species from lake Kirkkojarvi, Finland".
Authors: Jose Gama [aut, cre]
Maintainer: Jose Gama <[email protected]>
License: GPL (>= 3)
Version: 1.0.0
Built: 2024-12-04 07:23:55 UTC
Source: CRAN

Help Index


302 measurements of fish species at Kirkkojarvi lake

Description

302 lenght measurements of 11 fish species at Kirkkojarvi lake

Usage

fishkirkkojarvi2015

Format

dataframe with 302 rows and 6 columns:

fishname

Fish name in Finnish

fishID

Fish unique identifier for this dataset

sl

Standard Length in mm

fl

Fork Length in mm

tl

Total Length in mm

wt

Weight in g

Author(s)

Jose Gama

Examples

## Not run: 
# get an histogram of the fish species in the dataset
data(fishkirkkojarvi2015)
hist(fishkirkkojarvi2015[["fishID"]], xaxt="n", 
main='Histogram of fish species from the Kirkkojarvi lake',xlab='Fish species')
axis(1,at=1:10,labels=fishnames[1:10,'English'])

## End(Not run)

Names of fish species from Kirkkojarvi lake in four languages

Description

Names of fish species from Kirkkojarvi lake in Finnish, Swedish, English and Latin (binomial name)

Usage

fishnames

Format

dataframe with 11 rows and 5 columns:

fishID

fish unique identifier for this dataset

Finnish

Fish name in Finnish

English

Fish name in English

binomial.name

Fish binomial name in Latin

Swedish

Fish name in Swedish

Author(s)

Jose Gama

Examples

# What is "Kuha" in English and its binomial name?
data(fishnames)
fishnames[which(fishnames[["Finnish"]]=='Kuha'),c('English','binomial.name')]