For the three Alaska regions (EBS, AI, GOA), the compile.R code includes mutate(wtcpue = ifelse(WTCPUE == "-9999", NA, WTCPUE))). However, it is the NUMCPUE that has some seemingly erroneous -9999 values, not WTCPUE.
> summary(goa$WTCPUE)
Min. 1st Qu. Median Mean 3rd Qu. Max.
0.000 0.034 0.352 10.742 3.307 8744.010
> summary(goa$NUMCPUE)
Min. 1st Qu. Median Mean 3rd Qu. Max. NA's
-9999.000 -9999.000 0.404 -4223.034 3.320 15878.231 441
For the three Alaska regions (EBS, AI, GOA), the compile.R code includes
mutate(wtcpue = ifelse(WTCPUE == "-9999", NA, WTCPUE)))
. However, it is the NUMCPUE that has some seemingly erroneous -9999 values, not WTCPUE.