mbalcerzak / GraphShiny

A dashboard to visualize what datasets were used to create each of the clinical trial datasets

Home Page:https://mabgraphs.shinyapps.io/GraphShiny/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GraphShiny

The flow of clinical trials data can quickly become complicated. The dashboard presented can help programmers and project managers understand the data flow and quickly catch discrepancies

The dashboard can help with:

  • visually exploring dataset connections
  • ensuring that all main/QC programmers get notified if the underlying dataset changes
  • making sure all raw datasets are necessary and used on the study
  • checking if the actual data flow is in accordance with specification and industry/company standards
  • comparing inputs between main and QC programs
  • making sure we have all the datasets necessary to create each domain

How it is built

  1. Program create_graph_input.R checks SAS programs using regular expressions (REGEX). Program looks for mentions of "RAW", "SDTM" and "ADAM" to create a list of all datasets used while creating the program.
  2. It outputs two dataframes:
    • one with nodes (unique list of all the datasets names found)
    • one with edges (connections between the datasets e.g. RAW.DM --> SDTM.DM ...)
  3. For the purpose of this repository I am masking the data using a Python script (masking.py)
  4. R Shiny script reads in te two datasets and creates a graph using visNetwork library
  5. The user can:
    • filter the dataset if he/she wants to see only a specific dataset
    • download the filtered (or not) dataset with edges

Graph showing connections between all the datasets

While the app is starting the graph shows all the datasets in the input data

Graph showing connections only for SDTM.MM

Selecting a single node makes graph filter underlying dataset and show connections only for that dataset. It also outputs a reactive table where we can see the relations in a tabular form. User can download the dataset any time.

Flow of data going into the Shiny App

About

A dashboard to visualize what datasets were used to create each of the clinical trial datasets

https://mabgraphs.shinyapps.io/GraphShiny/

License:MIT License


Languages

Language:R 92.2%Language:Python 7.8%