fundamentals
play

Fundamentals Tamuno Alfred, PhD Biostatistician DataCamp - PowerPoint PPT Presentation

DataCamp Designing and Analyzing Clinical Trials in R DESIGNING AND ANALYZING CLINICAL TRIALS IN R Fundamentals Tamuno Alfred, PhD Biostatistician DataCamp Designing and Analyzing Clinical Trials in R What are clinical trials? Clinical


  1. DataCamp Designing and Analyzing Clinical Trials in R DESIGNING AND ANALYZING CLINICAL TRIALS IN R Fundamentals Tamuno Alfred, PhD Biostatistician

  2. DataCamp Designing and Analyzing Clinical Trials in R What are clinical trials? Clinical trials are scientific experiments used to evaluate the safety and efficacy of one or more treatments in humans.

  3. DataCamp Designing and Analyzing Clinical Trials in R Classifications

  4. DataCamp Designing and Analyzing Clinical Trials in R Randomization

  5. DataCamp Designing and Analyzing Clinical Trials in R Hierarchy of medical evidence

  6. DataCamp Designing and Analyzing Clinical Trials in R Confounders

  7. DataCamp Designing and Analyzing Clinical Trials in R Aim to achieve similar patient characteristics

  8. DataCamp Designing and Analyzing Clinical Trials in R Blinding

  9. DataCamp Designing and Analyzing Clinical Trials in R DESIGNING AND ANALYZING CLINICAL TRIALS IN R Let's practice!

  10. DataCamp Designing and Analyzing Clinical Trials in R DESIGNING AND ANALYZING CLINICAL TRIALS IN R Types of data and endpoints Tamuno Alfred, PhD Biostatistician

  11. DataCamp Designing and Analyzing Clinical Trials in R Conducting clinical trials Guidelines Trial protocols

  12. DataCamp Designing and Analyzing Clinical Trials in R Statistical Analysis Plans

  13. DataCamp Designing and Analyzing Clinical Trials in R Endpoints Prioritized into primary and secondary endpoints Safety and/or efficacy measures

  14. DataCamp Designing and Analyzing Clinical Trials in R Continuous endpoints

  15. DataCamp Designing and Analyzing Clinical Trials in R Continuous endpoints library(ggplot2) ggplot(data=exercise, aes(x=sbp_change)) + geom_histogram(fill="white", color="black") + xlab("SBP Change, mmHg")

  16. DataCamp Designing and Analyzing Clinical Trials in R Continuous endpoints library(dplyr) library(magrittr) exercise %>% summarize(mean_sbp = mean(sbp_baseline), sd_spb = sd(sbp_baseline))

  17. DataCamp Designing and Analyzing Clinical Trials in R Categorical endpoints library(dplyr) library(magrittr) finaldata %>% filter(!is.na(response)) %>% count(response, treatment) %>% mutate(pct = 100 * n / sum(n)) table(finaldata$response, finaldata$treatment)

  18. DataCamp Designing and Analyzing Clinical Trials in R Composite endpoints Combine multiple outcomes Summarize as categorical variable

  19. DataCamp Designing and Analyzing Clinical Trials in R Count endpoints Non-normal distribution Discrete values

  20. DataCamp Designing and Analyzing Clinical Trials in R Survival endpoints

  21. DataCamp Designing and Analyzing Clinical Trials in R Other collected data Dates of birth Dates of study visits Times of blood collection Ethnicity Gender Adverse events Year of diagnosis Concomitant medication …

  22. DataCamp Designing and Analyzing Clinical Trials in R DESIGNING AND ANALYZING CLINICAL TRIALS IN R Let's practice!

  23. DataCamp Designing and Analyzing Clinical Trials in R DESIGNING AND ANALYZING CLINICAL TRIALS IN R Basic statistical analysis Tamuno Alfred, PhD Biostatistician

  24. DataCamp Designing and Analyzing Clinical Trials in R Statistical inference

  25. DataCamp Designing and Analyzing Clinical Trials in R Hypothesis testing

  26. DataCamp Designing and Analyzing Clinical Trials in R Hypothesis testing

  27. DataCamp Designing and Analyzing Clinical Trials in R Hypothesis testing

  28. DataCamp Designing and Analyzing Clinical Trials in R Hypothesis testing

  29. DataCamp Designing and Analyzing Clinical Trials in R Hypothesis testing Estimate treatment effect, e.g. difference in means Confidence interval, typically 95%

  30. DataCamp Designing and Analyzing Clinical Trials in R Hypothesis testing Estimate treatment effect, e.g. difference in means Confidence interval, typically 95% Test statistic p-value

  31. DataCamp Designing and Analyzing Clinical Trials in R Hypothesis testing Estimate treatment effect, e.g. difference in means Confidence interval, typically 95% Test statistic p-value Compare to significance level α, typically 0.05

  32. DataCamp Designing and Analyzing Clinical Trials in R Continuous: comparison of means Normal distribution Two-sample t-test t.test(pct.change~group, var.equal=TRUE, data=bmd)

  33. DataCamp Designing and Analyzing Clinical Trials in R Continuous: comparison of means

  34. DataCamp Designing and Analyzing Clinical Trials in R Continuous: comparison of distributions Non-normal distribution Wilcoxon Rank Sum test (aka Mann Whitney test) wilcox.test(outcome.variable~ group.variable, data=dataset)

  35. DataCamp Designing and Analyzing Clinical Trials in R Continuous: comparison of distributions Non-normal distribution Null hypothesis Wilcoxon Rank Sum test (aka Mann Whitney test) wilcox.test(outcome.variable~ Alternative hypothesis group.variable, data=dataset)

  36. DataCamp Designing and Analyzing Clinical Trials in R Binary: comparison of proportions Chi-squared test of independence Use Fisher’s Exact Test on small sample sizes table1<-table(care.trial$group, care.trial$recover) prop.test(table1, correct=FALSE)

  37. DataCamp Designing and Analyzing Clinical Trials in R Binary: comparison of proportions

  38. DataCamp Designing and Analyzing Clinical Trials in R Assumptions Independent groups Similar patient characteristics between groups

  39. DataCamp Designing and Analyzing Clinical Trials in R Extensions Repeated measures data Three or more treatment groups

  40. DataCamp Designing and Analyzing Clinical Trials in R DESIGNING AND ANALYZING CLINICAL TRIALS IN R Let's practice!

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend