Learn R Programming

BSDA (version 1.01)

Fish: Length and number of fish caught with small and large mesh codend

Description

Data for Exercises 5.83, 5.119, and 7.29

Usage

Fish

Arguments

Format

A data frame with 767 observations on the following 5 variables.

length

a numeric vector

smalmesh

a numeric vector

largmesh

a numeric vector

smallmesh

a numeric vector

largemesh

a numeric vector

Examples

Run this code
# NOT RUN {
str(Fish)
attach(Fish)
median(smallmesh,na.rm=TRUE)
median(largemesh)
IQR(smallmesh,na.rm=TRUE)
IQR(largemesh)
SIGN.test(smallmesh,conf.level=.99)
SIGN.test(largemesh,conf.level=.99)
t.test(smallmesh,largemesh)
detach(Fish)
# }

Run the code above in your browser using DataLab