Skip to content

Commit 8430ec6

Browse files
vignette start
1 parent cde226d commit 8430ec6

File tree

3 files changed

+31
-5
lines changed

3 files changed

+31
-5
lines changed

DESCRIPTION

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,14 @@ Authors@R:
99
comment=c(ORCID="0000-0003-2973-7869")))
1010
URL: https://github.com/KatjaDanielzik/BayesVolcano
1111
BugReports: 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.
1520
License: GPL (>= 3)
1621
Encoding: UTF-8
1722
Roxygen: list(markdown = TRUE)
@@ -27,11 +32,10 @@ Imports:
2732
tidyr
2833
Suggests:
2934
brms,
30-
rstanarm,
31-
cmdstanr,
3235
rstan,
3336
knitr,
3437
rmarkdown,
3538
testthat (>= 3.0.0)
3639
LazyData: true
3740
Config/testthat/edition: 3
41+
VignetteBuilder: knitr

vignettes/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*.html
2+
*.R

vignettes/BayesVolcano.Rmd

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+
```

0 commit comments

Comments
 (0)