From 117174480326053b8c6b3bfd28d5a0f6f82e6eec Mon Sep 17 00:00:00 2001 From: Duncan Kennedy Date: Wed, 11 Sep 2024 18:26:06 -0600 Subject: [PATCH] updated documentation --- man/ypr_plot_yield.Rd | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/man/ypr_plot_yield.Rd b/man/ypr_plot_yield.Rd index 2829075..63615db 100644 --- a/man/ypr_plot_yield.Rd +++ b/man/ypr_plot_yield.Rd @@ -72,14 +72,15 @@ Plots the 'Yield', 'Age', 'Length', 'Weight', 'Effort', or 'YPUE' by the }} \examples{ \dontrun{ -ypr_plot_yield(ypr_populations( - Rk = c(2.5, 4.6), - Llo = c(0, 60) -), -plot_values = FALSE +ypr_plot_yield( + ypr_populations( + Rk = c(2.5, 4.6), + Llo = c(0, 60) + ), + plot_values = FALSE ) + ggplot2::facet_wrap(~Llo) + - ggplot2::aes_string(group = "Rk", color = "Rk") + + ggplot2::aes(group = Rk, color = Rk) + ggplot2::scale_color_manual(values = c("black", "blue")) ypr_plot_yield(ypr_populations(Rk = c(2.5, 4.6), Llo = c(0, 60))) +