Status and Trends: In 2023, the condition of adult Pacific cod in the EBS was neutral (within one standard deviation of the time series mean), which continues the trend of neutral morphometric condition observed since 2018.
Status and Trends: In 2023, the condition of juvenile Pacific cod in the EBS was neutral (within one standard deviation of the time series mean), which continues the trend of neutral morphometric condition observed since 2017.
Influential Factors: Many factors contribute to variation in morphometric condition so it is unclear which specific factors contributed to neutral condition of adult Pacific cod in the EBS in 2023. Factors that may contribute to variation in morphometric condition include environmental conditions that affect prey quality and temperature-dependent metabolic rates, survey timing, stomach fullness of individual fish, fish migration patterns, and the distribution of samples within survey strata. Temperature is an important factor that can influence the morphometric condition of Pacific cod by influencing metabolic rates, prey availability, and prey quality. Historically in the eastern Bering Sea (EBS), ‘cold’ years (with a small cold pool) were associated with negative morphometric condition (e.g., 1999, 2012) and warm years (e.g., 2002-2005) were associated with positive morphometric condition. However, during exceptionally warm years from 2018–2021, the morphometric condition of Pacific cod was neutral for adult and juvenile Pacific cod and this trend continued into the average temperature years in 2022-2023. Temperature can negatively affect growth rates if prey resources are insufficient to make up for increased metabolic demand. Additional information about the groundfish morphometric condition indicator and factors that can influence estimates of morphometric condition are described in the EBS Groundfish Morphometric Condition contribution in the 2023 Eastern Bering Sea Ecosystem Status Report (Prohaska and Rohan, In prep).
Implications: In the Gulf of Alaska, elevated temperatures during the 2014–2016 marine heatwave were associated with lower growth rates of Pacific cod and lower morphometric condition in 2015 (adults and juveniles combined), likely because diminished prey resources during the heatwave were insufficient to make up for increased metabolic demand [@Barbeaux2020].
library(akfishcondition) akfishcondition:::PCOD_ESP$FULL_REGION_EBS %>% dplyr::filter(common_name == "Pacific cod (juvenile)") %>% dplyr::mutate(indicator_name = "Summer_Pacific_Cod_Condition_Juvenile_EBS_Survey", data_value = mean_wt_resid) %>% dplyr::select(year, indicator_name, data_value) %>% write.csv(file = here::here("output", "ESP_Summer_Pacific_Cod_Condition_Juvenile_EBS_Survey.csv"), row.names = FALSE) akfishcondition:::PCOD_ESP$FULL_REGION_EBS %>% dplyr::filter(common_name == "Pacific cod (adult)") %>% dplyr::mutate(indicator_name = "Summer_Pacific_Cod_Condition_Adult_EBS_Survey", data_value = mean_wt_resid) %>% dplyr::select(year, indicator_name, data_value) %>% write.csv(file = here::here("output", "ESP_Summer_Pacific_Cod_Condition_Adult_EBS_Survey.csv"), row.names = FALSE) print(paste0("Last Update: ", akfishcondition:::EBS_INDICATOR$LAST_UPDATE))
```rFigure 1. VAST relative condition for adult and juvenile Pacific cod collected during AFSC/RACE GAP standard summer bottom trawl surveys of the eastern Bering Sea shelf, 1999 to 2022. The dash in the blue boxes denote the mean for that year, the blue box denotes one standard error, and the lines on the boxes denote two standard error. Horizontal lines on each plot represent the historical mean, dashed lines denote one standard deviation, and dotted lines denote two standard deviations.", message=FALSE, warning=FALSE} fig1_rmd <- plot_anomaly_timeseries(x = akfishcondition::PCOD_ESP$FULL_REGION_EBS, region = "BS", fill_color = "#0085CA", var_y_name = "mean_wt_resid", var_y_se_name = "se_wt_resid", var_x_name = "year", y_title = "Length-weight residual (ln(g))", plot_type = "box", format_for = "rmd")
fig1_png <- plot_anomaly_timeseries(x = akfishcondition::PCOD_ESP$FULL_REGION_EBS, region = "BS", fill_color = "#0085CA", var_y_name = "mean_wt_resid", var_y_se_name = "se_wt_resid", var_x_name = "year", y_title = "Length-weight residual (ln(g))", plot_type = "box", format_for = "png")
print(fig1_rmd + theme_condition_index())
```r png(here::here("plots", "BS", "ESP_EBS_PCOD_condition.png"),width=6,height=3,units="in",res=600) print(fig1_png + theme_blue_strip()) dev.off()
con <- file(here::here("output", "ESP_EBS_PCOD_Adult.txt")) writeLines(text = paste(akfishcondition::PCOD_ESP$FULL_REGION_EBS$mean_wt_resid[akfishcondition::PCOD_ESP$FULL_REGION_EBS$common_name == "Pacific cod (adult)"], collapse = ", "), con = con) close(con) con <- file(here::here("output", "ESP_EBS_PCOD_Juvenile.txt")) writeLines(text = paste(akfishcondition::PCOD_ESP$FULL_REGION_EBS$mean_wt_resid[akfishcondition::PCOD_ESP$FULL_REGION_EBS$common_name == "Pacific cod (juvenile)"], collapse = ", "), con = con) close(con)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.