Learn R Programming

prismadiagramR

The goal of prismadiagramR is to create a custom prismadiagram in R.

Installation

You can install the released version of prismadiagramR from CRAN with:

install.packages("prismadiagramR")

And the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("ltrainstg/prismadiagramR")

Example

This example shows how to create a simple automated PRISMA from a publication tracker.


set.seed(25)
N <- 100
studyStatus <- data.frame(Pub.ID = seq(1:N), 
                          Source = sample(1:3, N, replace = TRUE),
                          Filter = sample(1:5, N, replace = TRUE))
studyStatus$Filter[studyStatus$Filter==5] <- NA  
getPrisma(studyStatus) %>% DiagrammeR::grViz(.)
#> Warning in getPrisma(studyStatus): prismaFormat is null so attempting to
#> make automatic one from studyStatus
#> Warning in getFormatNode(prismaFormat): fontSize param not passed in
#> prismaFormat

Other PRISMA resources

A few other R packages exist that also make PRISMA diagram that might be better for your needs.

  1. prismaStatement This also uses DiagrammeR, but the template is fixed.
  2. metagear This does not use DiagrammeR and is highly customizable, but is buried with many other functions and a little hard to get working.

Package Development Resources

This package was developed following these guides:

Copy Link

Version

Install

install.packages('prismadiagramR')

Monthly Downloads

224

Version

1.0.0

License

MIT + file LICENSE

Issues

Pull Requests

Stars

Forks

Maintainer

Lionel Duarte

Last Published

May 4th, 2020

Functions in prismadiagramR (1.0.0)

studyStatus

Prices of 50,000 round cut diamonds.
prismadiagramR-package

prismadiagramR: Creates a Prisma Diagram using 'DiagrammeR'
getPrismaFormat

Create Prisma These functions create a PRISMA diagram from a simple dataframe keeping track of sources and filters It creates a DiagrammeR file run by grV
getPrisma

Create Prisma These functions create a PRISMA diagram from a simple dataframe keeping track of sources and filters It creates a DiagrammeR file run by grV