WebR is a tool allowing you to run R code in the web browser. Modify the code below and click run to see the results. Alternatively, copy the code and click here to open WebR in a new tab.
WebR is a tool allowing you to run R code in the web browser. Modify the code below and click run to see the results. Alternatively, copy the code and click here to open WebR in a new tab.
Code
library(dplyr)library(tern)adsl <- random.cdisc.data::cadsladeg <- random.cdisc.data::cadeg# Ensure character variables are converted to factors and empty strings and NAs are explicit missing levels.adsl <-df_explicit_na(adsl)adeg <-df_explicit_na(adeg)# Note: We keep only post-baseline for analysis.adeg_f <- adeg %>%filter(ONTRTFL =="Y") %>%filter(PARAM %in%c("Heart Rate", "QT Duration", "RR Duration")) %>%filter(ANRIND !="<Missing>") %>%var_relabel(PARAM ="Assessment",ANRIND ="Abnormality" )
shinylive allow you to modify to run shiny application entirely in the web browser. Modify the code below and click re-run the app to see the results. The performance is slighly worse and some of the features (e.g. downloading) might not work at all.