Skip to content

Commit baf8a3d

Browse files
committed
fix dataframe for multiple depletion levels
1 parent 44fb593 commit baf8a3d

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

R/18_multiplot_proj.R

+13-6
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@
1717
#' @param lang language to use. "en" = English; "es" = Spanish; "fr" = French.
1818
#'
1919
#' @importFrom ggplot2 ggplot aes xlim geom_path scale_colour_manual theme_classic xlab ylab ylim facet_wrap geom_label theme theme_classic geom_ribbon label_bquote element_blank
20-
#' @importFrom dplyr mutate recode
20+
#' @importFrom dplyr mutate recode bind_rows
2121
#' @importFrom tidyr pivot_longer
22+
#' @importFrom magrittr %>%
2223
#' @return A plot of 50 percent and 90 percent confidence intervals of population projections if \code{spaghetti == FALSE} or a spaghetti plot with n individual projections if \code{spaghetti == n }, from \code{projections()}.
2324
#'
2425
#' @examples
@@ -267,12 +268,13 @@ multiplot_proj <- function(high.d1, # d1 is lowest depl, high is highest bycatch
267268
megadf <- bind_rows(sdf1, sdf2, sdf3)
268269

269270
megadf <- megadf %>%
271+
rename(variable = name) %>%
270272
mutate(variable = recode(variable,
271273
high = sdf_labs_hi,
272274
med = sdf_labs_med,
273275
low = sdf_labs_low
274276
))
275-
277+
#browser()
276278
anno <- data.frame(
277279
x = ts.length * .8, y = 1, # annotations
278280
sim = 1:3,
@@ -354,11 +356,17 @@ multiplot_proj <- function(high.d1, # d1 is lowest depl, high is highest bycatch
354356
p <-
355357
ggplot(tp, aes(x = year)) +
356358
geom_ribbon(
357-
aes(ymin = lo90 / K1plus, ymax = hi90 / K1plus, fill = blvl), alpha = 0.5) +
359+
aes(ymin = lo90 / K1plus, ymax = hi90 / K1plus, fill = blvl),
360+
alpha = 0.5
361+
) +
358362
geom_ribbon(
359-
aes(ymin = lo50 / K1plus, ymax = hi50 / K1plus, fill = blvl), alpha = 0.5) +
363+
aes(ymin = lo50 / K1plus, ymax = hi50 / K1plus, fill = blvl),
364+
alpha = 0.5
365+
) +
360366
geom_line(
361-
aes(y = median / K1plus, colour = blvl), lwd = 1.1) +
367+
aes(y = median / K1plus, colour = blvl),
368+
lwd = 1.1
369+
) +
362370
ylim(0, 1) +
363371
scale_fill_manual(bylvl_lab, values = rev(color.palette)) +
364372
scale_colour_manual(bylvl_lab, values = rev(color.palette)) +
@@ -380,4 +388,3 @@ multiplot_proj <- function(high.d1, # d1 is lowest depl, high is highest bycatch
380388
p
381389
}
382390
}
383-
# multiplot.proj(spaghetti=10)

0 commit comments

Comments
 (0)