Skip to contents

Fish information from samples collected from Big Hill Reservoir, KS, in May, 2014.

Format

A data frame with 266 observations on the following 6 variables.

UID

Unique sample identification number (see BGHRsample)

fishID

Unique fish identification number

specCode

Numeric code for each species (116=“Smallmouth Bass”, 118=“Largemouth Bass”, and 122=“Bluegill”)

length

Total length (mm)

weight

Weight (g)

count

Number of fish sampled of that species and length

Source

Obtained directly from Ben Neely. CSV file

Topic(s)

  • Data Manipulation

See also

See BGHRfish for individual fish collected in these samples.

Examples

data(BGHRfish)
str(BGHRfish)
#> 'data.frame':	266 obs. of  6 variables:
#>  $ UID     : int  1 1 1 1 1 1 1 1 1 1 ...
#>  $ fishID  : int  1 2 3 4 5 6 7 8 9 10 ...
#>  $ specCode: int  116 116 118 118 118 118 118 118 118 118 ...
#>  $ length  : int  100 100 298 280 465 315 427 254 354 394 ...
#>  $ weight  : int  NA NA 300 270 1790 360 1150 210 660 880 ...
#>  $ count   : int  1 1 1 1 1 1 1 1 1 1 ...
head(BGHRfish)
#>   UID fishID specCode length weight count
#> 1   1      1      116    100     NA     1
#> 2   1      2      116    100     NA     1
#> 3   1      3      118    298    300     1
#> 4   1      4      118    280    270     1
#> 5   1      5      118    465   1790     1
#> 6   1      6      118    315    360     1