| plot_volcano | R Documentation |
Plot Bayesian Volcano plot
plot_volcano(result, CrI = FALSE, CrI_width = FALSE, color = NULL)
result |
from |
CrI |
Logical. Whether to display the CrI Interval of the parameter |
CrI_width |
Logical. Whether to display the CrI width as point size. |
color |
Column in 'result$result. Can be numerical or character. |
a ggplot2 object
data("posterior")
head(posterior)
data("annotation_df")
head(annotation_df)
result <- prepare_volcano_input(
posterior = posterior,
annotation = annotation_df,
)
plot_volcano(result,
color = "group",
CrI = TRUE,
CrI_width = TRUE
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.