File tree Expand file tree Collapse file tree 3 files changed +31
-5
lines changed
Expand file tree Collapse file tree 3 files changed +31
-5
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,14 @@ Authors@R:
99 comment=c(ORCID="0000-0003-2973-7869")))
1010URL: https://github.com/KatjaDanielzik/BayesVolcano
1111BugReports: https://github.com/KatjaDanielzik/BayesVolcano/issues
12- Description: BayesVolcano takes posterior draws from Bayesian models fits and
13- facilitates the calculation of pi-values for chosen effect sizes and plotting
14- of Volcano plots (effect size on x-axis, pi-value on y-axis).
12+ Description: Bayesian models are used to estimate effect sizes (e.g., gene expression changes,
13+ protein abundance differences, drug response effects) while accounting for uncertainty,
14+ small sample sizes, and complex experimental designs.
15+ However, Bayesian outputs are often difficult to interpret at a glance.
16+ One way to quickly identify important biological changes of frequentist analysis
17+ are volcano plots (using fold-changes and p-values).
18+ Bayesian volcano plots bring together the uncertainty aware power of Bayesian
19+ models and the familiar visualization of volcano plots.
1520License: GPL (>= 3)
1621Encoding: UTF-8
1722Roxygen: list(markdown = TRUE)
@@ -27,11 +32,10 @@ Imports:
2732 tidyr
2833Suggests:
2934 brms,
30- rstanarm,
31- cmdstanr,
3235 rstan,
3336 knitr,
3437 rmarkdown,
3538 testthat (>= 3.0.0)
3639LazyData: true
3740Config/testthat/edition: 3
41+ VignetteBuilder: knitr
Original file line number Diff line number Diff line change 1+ * .html
2+ * .R
Original file line number Diff line number Diff line change 1+ ---
2+ title : " BayesVolcano"
3+ author : Katja Danielzik (katja.danielzik@uni-due.de)
4+ output : rmarkdown::html_vignette
5+ vignette : >
6+ %\VignetteIndexEntry{BayesVolcano}
7+ %\VignetteEngine{knitr::rmarkdown}
8+ %\VignetteEncoding{UTF-8}
9+ ---
10+
11+ ``` {r, include = FALSE}
12+ knitr::opts_chunk$set(
13+ collapse = TRUE,
14+ comment = "#>"
15+ )
16+ ```
17+
18+ ``` {r setup}
19+ library(BayesVolcano)
20+ ```
You can’t perform that action at this time.
0 commit comments