├── .gitignore ├── LICENSE.md ├── README.md ├── materials ├── dataset_code │ ├── adams.R │ ├── make_ard.R │ └── make_sdtm.r ├── datasets │ ├── ADAM │ │ ├── adae.xpt │ │ ├── adpft.xpt │ │ └── adsl.xpt │ ├── ARD │ │ ├── ae.xpt │ │ ├── demog.xpt │ │ ├── model.xpt │ │ ├── pft.xpt │ │ └── pft_chg.xpt │ └── SDTM │ │ ├── ae.xpt │ │ ├── dm.xpt │ │ ├── ex.xpt │ │ ├── re.xpt │ │ ├── suppae.xpt │ │ ├── sv.xpt │ │ ├── tv.xpt │ │ └── vs.xpt ├── day1.pptx ├── day_2.pptx ├── example_code │ ├── 01_first_tfrmt.R │ ├── 02_make_ADPFT.R │ ├── 03_demog_ARD.R │ ├── 04_demog_tbl.R │ └── 10_art_of_the_possible.R ├── exercises │ ├── answers │ │ ├── exercise1_answers.R │ │ ├── exercise2_answers.R │ │ ├── exercise3_answers.R │ │ ├── exercise4_answers.R │ │ ├── exercise5_answers.R │ │ ├── exercise6_answers.R │ │ ├── exercise7_answers.R │ │ └── exercise8_answers.R │ ├── exercise1.R │ ├── exercise2.R │ ├── exercise3.R │ ├── exercise4.R │ ├── exercise5.R │ ├── exercise6.R │ ├── exercise7.R │ └── exercise8.R ├── images │ ├── AE_mock.png │ ├── pft_mock.png │ └── primary.png ├── install.R └── specs │ └── specs.xlsx └── workshop-conf-2022.Rproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/README.md -------------------------------------------------------------------------------- /materials/dataset_code/adams.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/dataset_code/adams.R -------------------------------------------------------------------------------- /materials/dataset_code/make_ard.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/dataset_code/make_ard.R -------------------------------------------------------------------------------- /materials/dataset_code/make_sdtm.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/dataset_code/make_sdtm.r -------------------------------------------------------------------------------- /materials/datasets/ADAM/adae.xpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/datasets/ADAM/adae.xpt -------------------------------------------------------------------------------- /materials/datasets/ADAM/adpft.xpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/datasets/ADAM/adpft.xpt -------------------------------------------------------------------------------- /materials/datasets/ADAM/adsl.xpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/datasets/ADAM/adsl.xpt -------------------------------------------------------------------------------- /materials/datasets/ARD/ae.xpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/datasets/ARD/ae.xpt -------------------------------------------------------------------------------- /materials/datasets/ARD/demog.xpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/datasets/ARD/demog.xpt -------------------------------------------------------------------------------- /materials/datasets/ARD/model.xpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/datasets/ARD/model.xpt -------------------------------------------------------------------------------- /materials/datasets/ARD/pft.xpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/datasets/ARD/pft.xpt -------------------------------------------------------------------------------- /materials/datasets/ARD/pft_chg.xpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/datasets/ARD/pft_chg.xpt -------------------------------------------------------------------------------- /materials/datasets/SDTM/ae.xpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/datasets/SDTM/ae.xpt -------------------------------------------------------------------------------- /materials/datasets/SDTM/dm.xpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/datasets/SDTM/dm.xpt -------------------------------------------------------------------------------- /materials/datasets/SDTM/ex.xpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/datasets/SDTM/ex.xpt -------------------------------------------------------------------------------- /materials/datasets/SDTM/re.xpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/datasets/SDTM/re.xpt -------------------------------------------------------------------------------- /materials/datasets/SDTM/suppae.xpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/datasets/SDTM/suppae.xpt -------------------------------------------------------------------------------- /materials/datasets/SDTM/sv.xpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/datasets/SDTM/sv.xpt -------------------------------------------------------------------------------- /materials/datasets/SDTM/tv.xpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/datasets/SDTM/tv.xpt -------------------------------------------------------------------------------- /materials/datasets/SDTM/vs.xpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/datasets/SDTM/vs.xpt -------------------------------------------------------------------------------- /materials/day1.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/day1.pptx -------------------------------------------------------------------------------- /materials/day_2.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/day_2.pptx -------------------------------------------------------------------------------- /materials/example_code/01_first_tfrmt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/example_code/01_first_tfrmt.R -------------------------------------------------------------------------------- /materials/example_code/02_make_ADPFT.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/example_code/02_make_ADPFT.R -------------------------------------------------------------------------------- /materials/example_code/03_demog_ARD.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/example_code/03_demog_ARD.R -------------------------------------------------------------------------------- /materials/example_code/04_demog_tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/example_code/04_demog_tbl.R -------------------------------------------------------------------------------- /materials/example_code/10_art_of_the_possible.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/example_code/10_art_of_the_possible.R -------------------------------------------------------------------------------- /materials/exercises/answers/exercise1_answers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/exercises/answers/exercise1_answers.R -------------------------------------------------------------------------------- /materials/exercises/answers/exercise2_answers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/exercises/answers/exercise2_answers.R -------------------------------------------------------------------------------- /materials/exercises/answers/exercise3_answers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/exercises/answers/exercise3_answers.R -------------------------------------------------------------------------------- /materials/exercises/answers/exercise4_answers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/exercises/answers/exercise4_answers.R -------------------------------------------------------------------------------- /materials/exercises/answers/exercise5_answers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/exercises/answers/exercise5_answers.R -------------------------------------------------------------------------------- /materials/exercises/answers/exercise6_answers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/exercises/answers/exercise6_answers.R -------------------------------------------------------------------------------- /materials/exercises/answers/exercise7_answers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/exercises/answers/exercise7_answers.R -------------------------------------------------------------------------------- /materials/exercises/answers/exercise8_answers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/exercises/answers/exercise8_answers.R -------------------------------------------------------------------------------- /materials/exercises/exercise1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/exercises/exercise1.R -------------------------------------------------------------------------------- /materials/exercises/exercise2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/exercises/exercise2.R -------------------------------------------------------------------------------- /materials/exercises/exercise3.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/exercises/exercise3.R -------------------------------------------------------------------------------- /materials/exercises/exercise4.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/exercises/exercise4.R -------------------------------------------------------------------------------- /materials/exercises/exercise5.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/exercises/exercise5.R -------------------------------------------------------------------------------- /materials/exercises/exercise6.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/exercises/exercise6.R -------------------------------------------------------------------------------- /materials/exercises/exercise7.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/exercises/exercise7.R -------------------------------------------------------------------------------- /materials/exercises/exercise8.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/exercises/exercise8.R -------------------------------------------------------------------------------- /materials/images/AE_mock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/images/AE_mock.png -------------------------------------------------------------------------------- /materials/images/pft_mock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/images/pft_mock.png -------------------------------------------------------------------------------- /materials/images/primary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/images/primary.png -------------------------------------------------------------------------------- /materials/install.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/install.R -------------------------------------------------------------------------------- /materials/specs/specs.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/materials/specs/specs.xlsx -------------------------------------------------------------------------------- /workshop-conf-2022.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/clinical-reporting-r/HEAD/workshop-conf-2022.Rproj --------------------------------------------------------------------------------