Make a heatmap of the sensitivity analysis performed by sens_kd_depth()
Source: R/sensitivity-kd-depth.R
plot_sens_kd_depth.Rd
Make a heatmap of the sensitivity analysis performed by sens_kd_depth()
Arguments
- x
A data.frame, the output of
sens_kd_depth()
- interactive
Whether to make the plot interactive
- ...
parameters passed on to
ggiraph::girafe()
to control the interactive plot ifinteractive = TRUE
.
Value
a ggplot2
object if interactive = FALSE
, a girafe
interactive
plot object if interactive = TRUE
Examples
if (FALSE) { # \dontrun{
out <- sens_kd_depth(
"Anthracene",
lat = 52,
lon = -113,
DOC = 3:8,
depth_m = c(0.25, 0.5, 0.75, 1),
date = c("2023-07-01", "2023-08-01")
)
plot_sens_kd_depth(out)
out2 <- sens_kd_depth(
"benzo(a)pyrene",
lat = 57,
lon = -120,
Kd_ref = seq(10, 50, by = 10),
depth_m = c(0.25, 0.5, 0.75, 1),
date = c("2023-07-01", "2023-08-01")
)
plot_sens_kd_depth(out2, interactive = TRUE)
} # }