Last data update: 2014.03.03

R: Lengths and weights for Chinook Salmon from three locations...
ChinookArgR Documentation

Lengths and weights for Chinook Salmon from three locations in Argentina.

Description

Lengths and weights for Chinook Salmon from three locations in Argentina.

Format

A data frame with 112 observations on the following 3 variables:

tl

Total length (cm)

w

Weight (kg)

loc

Capture location (Argentina, Petrohue, Puyehue)

Topic(s)

  • Weight-Length

Source

From Figure 4 in Soto, D., I. Arismendi, C. Di Prinzio, and F. Jara. 2007. Establishment of Chinook salmon (Oncorhynchus tshawytscha) in Pacific basins of southern South America and its potential ecosystem implications. Revista Chilena d Historia Natural, 80:81-98. [Was (is?) from http://www.scielo.cl/pdf/rchnat/v80n1/art07.pdf.]

Examples

data(ChinookArg)
str(ChinookArg)
head(ChinookArg)
op <- par(mfrow=c(2,2),pch=19)
plot(w~tl,data=ChinookArg,subset=loc=="Argentina")
plot(w~tl,data=ChinookArg,subset=loc=="Petrohue")
plot(w~tl,data=ChinookArg,subset=loc=="Puyehue")
par(op)

Results


R version 3.3.1 (2016-06-21) -- "Bug in Your Hair"
Copyright (C) 2016 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.

> library(FSA)


 ############################################
 ##      FSA package, version 0.8.7        ##
 ##    Derek H. Ogle, Northland College    ##
 ##                                        ##
 ## Run ?FSA for documentation.            ##
 ## Run citation('FSA') for citation ...   ##
 ##   please cite if used in publication.  ##
 ##                                        ##
 ## See derekogle.com/fishR/ for more      ##
 ##   thorough analytical vignettes.       ##
 ############################################


> png(filename="/home/ddbj/snapshot/RGM3/R_CC/result/FSA/ChinookArg.Rd_%03d_medium.png", width=480, height=480)
> ### Name: ChinookArg
> ### Title: Lengths and weights for Chinook Salmon from three locations in
> ###   Argentina.
> ### Aliases: ChinookArg
> ### Keywords: datasets
> 
> ### ** Examples
> 
> data(ChinookArg)
> str(ChinookArg)
'data.frame':	112 obs. of  3 variables:
 $ tl : num  120 115 111 110 110 ...
 $ w  : num  17.9 17.2 16.8 15.8 14.3 13.8 12.8 11.7 12.8 14.8 ...
 $ loc: Factor w/ 3 levels "Argentina","Petrohue",..: 1 1 1 1 1 1 1 1 1 1 ...
> head(ChinookArg)
     tl    w       loc
1 120.1 17.9 Argentina
2 115.0 17.2 Argentina
3 111.2 16.8 Argentina
4 110.2 15.8 Argentina
5 110.0 14.3 Argentina
6 109.7 13.8 Argentina
> op <- par(mfrow=c(2,2),pch=19)
> plot(w~tl,data=ChinookArg,subset=loc=="Argentina")
> plot(w~tl,data=ChinookArg,subset=loc=="Petrohue")
> plot(w~tl,data=ChinookArg,subset=loc=="Puyehue")
> par(op)
> 
> 
> 
> 
> 
> 
> dev.off()
null device 
          1 
>