Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/markvanderloo/metaplot
Plotting routines for meta-analyses
https://github.com/markvanderloo/metaplot
Last synced: 8 days ago
JSON representation
Plotting routines for meta-analyses
- Host: GitHub
- URL: https://github.com/markvanderloo/metaplot
- Owner: markvanderloo
- Created: 2019-12-06T14:13:24.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-06T15:59:37.000Z (about 5 years ago)
- Last Synced: 2024-08-13T07:15:22.798Z (4 months ago)
- Language: R
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - markvanderloo/metaplot - Plotting routines for meta-analyses (R)
README
# metaplot
R package for creating rank probability plots and SUCRA plots.
- Extract rank probabilities from model objects into simple matrices
- Plot rank probabilities or SUCRA values### Installation
For users of Windoze, first install [rtools](https://cran.r-project.org/bin/windows/Rtools/) suited for
your R version. Also install the `remotes` package (ony once). Next, in R type:```r
remotes::install_github("markvanderloo/metaplot", subdir="pkg")
```### Example
```r
library(pcnetmeta)
library(metaplot)
nma <- pcnetmeta::nma.ab(...)sucra_values(nma)
sucra_plot(nma)
rank_probabilities(nma)
rank_probability_plot(nma)
```### Supported models and R objects
Currenlty the package can extract and plot objects of the following type:
- `nma.ab` From the [pcnetmeta](https://cran.r-project.org/package=pcnetmeta) package.
### Note
This package is experimental and interfaces, function names and so on may change. You know the drill.