R/SculpinALTER.R

#' @title Biological data for Slimy Sculpin from the Arctic LTER (AK).
#' 
#' @description Biological data (length, weight, and age) for Slimy Sculpin (\emph{Cottus cognatus}) sampled from Lake S-6 of the Arctic Long Term Ecological Research location.
#' 
#' @details Slimy Sculpin were captured from Lake S-6 during the summers of 1988 and 1989. Sculpins were captured using canning jars with acetate funnels inserted in them (similar in design to some minnow traps). The sculpin traps were set by raft and placed on the bottom of the lake in a specific habitat (inshore, rocky, rock-mud interface, and mud bottom). (Roughly) every three days the traps were retrieved and the sculpins, if any, were removed.The ages of the fish were determined by counting the rings in their otoliths.
#' 
#' @name SculpinALTER
#' 
#' @docType data
#' 
#' @format A data frame of 117 observations on the following 3 variables:
#'  \describe{
#'    \item{w}{Weight (nearest 0.1 g) at capture} 
#'    \item{tl}{Total length (nearest mm) at capture}
#'    \item{age}{Age (completed growing seasons from otoliths) at capture}
#'  }
#'  
#' @section Topic(s):
#'  \itemize{
#'    \item Length Frequency 
#'    \item Weight-Length
#'    \item Growth
#'    \item von Bertalanffy
#'    \item Size Structure
#'  }
#'  
#' @concept Growth
#' @concept von Bertalanffy
#' @concept Length Frequency
#' @concept Weight-Length
#' @concept Size Structure
#' 
#' @source Obtained from the Arctic LTER site. \href{https://raw.githubusercontent.com/fishR-Core-Team/FSAdata/main/data-raw/SculpinALTER.csv}{CSV file}
#' 
#' @keywords datasets
#' 
#' @examples
#' data(SculpinALTER)
#' str(SculpinALTER)
#' head(SculpinALTER)
#' op <- par(mfrow=c(2,2),pch=19)
#' hist(SculpinALTER$tl,main="")
#' hist(SculpinALTER$age,main="")
#' plot(w~tl,data=SculpinALTER)
#' plot(tl~age,data=SculpinALTER)
#' par(op)
#' 
NULL

Try the FSAdata package in your browser

Any scripts or data that you put into this service are public.

FSAdata documentation built on Aug. 24, 2023, 5:06 p.m.