You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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.The text was updated successfully, but these errors were encountered: