Home
PRISMA.PRISMA
— ModulePRISMA.jl
Julia package for generating checklists and flow diagrams based on the 2020 Preferred Reporting Items for Systematic Reviews and Meta-Analyses (PRISMA) statement (Page et al., 2021).
New Functions and Types:
For working with PRISMA checklists:
checklist_dataframe
- returns an empty PRISMA checklist as the typeDataFrame
checklist_template
- returns an empty PRISMA checklist as comma-separated valueschecklist_read
- reads the checklist data as aDataFrame
from comma-separated valueschecklist
- takes a PDF and returns a completed PRISMA checklist as the typeChecklist
checklist_save
- saves aChecklist
as comma-separated valuesChecklist
- includes a completed checklist and paper metadata
For working with PRISMA flow diagrams:
flow_diagram_dataframe
- returns the template PRISMA flow diagram data as aDataFrame
flow_diagram_template
- returns the template PRISMA flow diagram data as comma-separated valuesflow_diagram_read
- reads the flow diagram data as aDataFrame
from comma-separated valuesflow_diagram
- returns a PRISMA flow diagram as the typeFlowDiagram
flow_diagram_save
- saves aFlowDiagram
using GraphvizFlowDiagram
- the flow diagram type that can be displayed in the plot panel or saved
Reexports
DataFrames.DataFrame
- bothflow_diagram_dataframe
andchecklist_dataframe
return aDataFrame
Base.display
-PRISMA
adds a method for displaying theFlowDiagram
in the plot panelBase.show
-PRISMA
adds new methods for printing theChecklist
andFlowDiagram
types