Skip to Tutorial Content

Welcome

Welcome to PRECISION-LVAD tutorial!In this tutorial, we’ll be learning :

  • Load datasets
  • Fit personalized model on each pump parameter based on PRECISION-LVAD engine
  • Get Out-of-control points for each time-point
  • Evaluate the results

This srepository is linked to our new paper entitled:paper

Prerequisites

To run the PRECISION-LVAD algorithm you need to install below packages:

  • dplyr
  • Lme4
  • qcc

Load data

# loading the datasets:
df_all_patient<-readr::read_csv("data/syn_data_CA.csv")
head(df_all_patient)
# loading the datasets:
df_all_patient<-readr::read_csv("data/syn_data_MB.csv")
head(df_all_patient)

Fit PRECISION-LVAD on the data

Obtain Out-of-control points with PRECISION-LVAD

Evaluate

Tutorial of PRECISION-LVAD!