Workshop materials for creating effective visualizations of clinical data using R and Python.
Download slides and sample data for this workshop.
Jupyter notebooks and scripts for Python-based visualizations.
Python 3 is required to run this notebook. We recommend using venv to create a virtual environment.
This notebook uses Seaborn for visualizations. Seaborn provides a simpler interface and more visually appealing default themes. It will automatically install pandas, numpy, matplotlib, and other dependencies.
python3 -m venv venv
source venv/bin/activate
pip install jupyter seaborn
The notebook uses Plotly for Sankey diagrams:
pip install plotly
jupyter notebook
R Markdown notebooks for R-based visualizations.
Individual chart examples with dedicated notebooks and video tutorials.