├── .gitignore ├── 2017-subintern.Rmd ├── 2017-subintern.html ├── 2018-subintern.Rmd ├── 2018-subintern.csv ├── 2018-subintern.html ├── 2019-homework ├── 123.Rmd ├── 123.html ├── FunnySharkyVer2.Rmd ├── FunnySharkyVer2.html ├── FunnySharkyVer3.Rmd ├── R.Rproj ├── acs.xlsx ├── drshin93.Rmd ├── drshin93.pdf ├── funnysharky.Rmd ├── funnysharky.html ├── funnysharky.pdf ├── marikim217.Rmd ├── marikim217.html ├── maronbam.Rmd ├── maronbam.pdf ├── mintnia.Rmd ├── mintnia.html ├── mintnia.pdf └── shanmdphd.Rmd ├── 2019-subintern-old.Rmd ├── 2019-subintern.Rmd ├── 2019-subintern.html ├── 2020-homework ├── Drug_X_PK.xlsx ├── NCA.R ├── R.Rproj ├── README.md ├── figure.r ├── mante111.Rmd ├── mante111.html └── stat.R ├── Graph.Rmd ├── Graph.html ├── LICENSE ├── R.Rproj ├── R ├── Project2016.R ├── Xproject.R ├── graph.R ├── linear-regression.R ├── linear-regression.Rmd ├── linear-regression.nb.html ├── ncaByR-Theoph.R └── ncaByR-indometh.R ├── README.md ├── assets └── pk │ ├── SUBJID1.png │ ├── SUBJID10.png │ ├── SUBJID11.png │ ├── SUBJID12.png │ ├── SUBJID13.png │ ├── SUBJID14.png │ ├── SUBJID15.png │ ├── SUBJID16.png │ ├── SUBJID17.png │ ├── SUBJID19.png │ ├── SUBJID2.png │ ├── SUBJID20.png │ ├── SUBJID21.png │ ├── SUBJID3.png │ ├── SUBJID4.png │ ├── SUBJID5.png │ ├── SUBJID6.png │ ├── SUBJID7.png │ ├── SUBJID8.png │ └── SUBJID9.png ├── data-raw ├── COPD-FEV1-smoking.csv ├── COPD-FEV1-smoking.xlsx ├── assay │ ├── Drug_X_PK.csv │ └── Drug_X_PK.xlsx └── wnl │ ├── Xproject_Core output.rtf │ ├── Xproject_Final Parameters Pivoted.csv │ └── Xproject_Final Parameters Pivoted.xls ├── data ├── ncaIndometh.csv ├── ncaIndomethLong.csv ├── ncaIndomethStar.csv ├── ncaTheoph.csv └── ncaTheophLong.csv ├── docs-presentation ├── DAC HYP.pptx ├── DeepDive_GitHub_180712.pdf ├── Rweek09.pptx ├── dplyr.pdf ├── ggplot2.pdf ├── introduction.pdf ├── r-programming-week09-shan.pptx ├── r-programming-week10-skyoon.pptx └── transl-research-design-2017-12-21.pptx ├── docs ├── Joint R&D Program workshop.pptx └── README.md ├── drug-development-and-R └── index.Rmd ├── kitty.png ├── mante111.Rmd ├── references └── myref.bib ├── resources ├── Clinical-Pharmacology-Planning-Toolkit_2019.pdf ├── Xproject.docx └── Xproject_Final_for_Word.csv └── result └── ggplotfigs ├── SUBJID1.png ├── SUBJID10.png ├── SUBJID11.png ├── SUBJID12.png ├── SUBJID13.png ├── SUBJID14.png ├── SUBJID15.png ├── SUBJID16.png ├── SUBJID17.png ├── SUBJID19.png ├── SUBJID2.png ├── SUBJID20.png ├── SUBJID21.png ├── SUBJID3.png ├── SUBJID4.png ├── SUBJID5.png ├── SUBJID6.png ├── SUBJID7.png ├── SUBJID8.png └── SUBJID9.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/.gitignore -------------------------------------------------------------------------------- /2017-subintern.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2017-subintern.Rmd -------------------------------------------------------------------------------- /2017-subintern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2017-subintern.html -------------------------------------------------------------------------------- /2018-subintern.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2018-subintern.Rmd -------------------------------------------------------------------------------- /2018-subintern.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2018-subintern.csv -------------------------------------------------------------------------------- /2018-subintern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2018-subintern.html -------------------------------------------------------------------------------- /2019-homework/123.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2019-homework/123.Rmd -------------------------------------------------------------------------------- /2019-homework/123.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2019-homework/123.html -------------------------------------------------------------------------------- /2019-homework/FunnySharkyVer2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2019-homework/FunnySharkyVer2.Rmd -------------------------------------------------------------------------------- /2019-homework/FunnySharkyVer2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2019-homework/FunnySharkyVer2.html -------------------------------------------------------------------------------- /2019-homework/FunnySharkyVer3.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2019-homework/FunnySharkyVer3.Rmd -------------------------------------------------------------------------------- /2019-homework/R.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2019-homework/R.Rproj -------------------------------------------------------------------------------- /2019-homework/acs.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2019-homework/acs.xlsx -------------------------------------------------------------------------------- /2019-homework/drshin93.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2019-homework/drshin93.Rmd -------------------------------------------------------------------------------- /2019-homework/drshin93.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2019-homework/drshin93.pdf -------------------------------------------------------------------------------- /2019-homework/funnysharky.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2019-homework/funnysharky.Rmd -------------------------------------------------------------------------------- /2019-homework/funnysharky.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2019-homework/funnysharky.html -------------------------------------------------------------------------------- /2019-homework/funnysharky.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2019-homework/funnysharky.pdf -------------------------------------------------------------------------------- /2019-homework/marikim217.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2019-homework/marikim217.Rmd -------------------------------------------------------------------------------- /2019-homework/marikim217.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2019-homework/marikim217.html -------------------------------------------------------------------------------- /2019-homework/maronbam.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2019-homework/maronbam.Rmd -------------------------------------------------------------------------------- /2019-homework/maronbam.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2019-homework/maronbam.pdf -------------------------------------------------------------------------------- /2019-homework/mintnia.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2019-homework/mintnia.Rmd -------------------------------------------------------------------------------- /2019-homework/mintnia.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2019-homework/mintnia.html -------------------------------------------------------------------------------- /2019-homework/mintnia.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2019-homework/mintnia.pdf -------------------------------------------------------------------------------- /2019-homework/shanmdphd.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2019-homework/shanmdphd.Rmd -------------------------------------------------------------------------------- /2019-subintern-old.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2019-subintern-old.Rmd -------------------------------------------------------------------------------- /2019-subintern.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2019-subintern.Rmd -------------------------------------------------------------------------------- /2019-subintern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2019-subintern.html -------------------------------------------------------------------------------- /2020-homework/Drug_X_PK.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2020-homework/Drug_X_PK.xlsx -------------------------------------------------------------------------------- /2020-homework/NCA.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2020-homework/NCA.R -------------------------------------------------------------------------------- /2020-homework/R.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2020-homework/R.Rproj -------------------------------------------------------------------------------- /2020-homework/README.md: -------------------------------------------------------------------------------- 1 | 여기에 R 파일을 올려주세요. 2 | -------------------------------------------------------------------------------- /2020-homework/figure.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2020-homework/figure.r -------------------------------------------------------------------------------- /2020-homework/mante111.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2020-homework/mante111.Rmd -------------------------------------------------------------------------------- /2020-homework/mante111.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2020-homework/mante111.html -------------------------------------------------------------------------------- /2020-homework/stat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/2020-homework/stat.R -------------------------------------------------------------------------------- /Graph.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/Graph.Rmd -------------------------------------------------------------------------------- /Graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/Graph.html -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/LICENSE -------------------------------------------------------------------------------- /R.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/R.Rproj -------------------------------------------------------------------------------- /R/Project2016.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/R/Project2016.R -------------------------------------------------------------------------------- /R/Xproject.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/R/Xproject.R -------------------------------------------------------------------------------- /R/graph.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/R/graph.R -------------------------------------------------------------------------------- /R/linear-regression.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/R/linear-regression.R -------------------------------------------------------------------------------- /R/linear-regression.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/R/linear-regression.Rmd -------------------------------------------------------------------------------- /R/linear-regression.nb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/R/linear-regression.nb.html -------------------------------------------------------------------------------- /R/ncaByR-Theoph.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/R/ncaByR-Theoph.R -------------------------------------------------------------------------------- /R/ncaByR-indometh.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/R/ncaByR-indometh.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/README.md -------------------------------------------------------------------------------- /assets/pk/SUBJID1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/assets/pk/SUBJID1.png -------------------------------------------------------------------------------- /assets/pk/SUBJID10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/assets/pk/SUBJID10.png -------------------------------------------------------------------------------- /assets/pk/SUBJID11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/assets/pk/SUBJID11.png -------------------------------------------------------------------------------- /assets/pk/SUBJID12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/assets/pk/SUBJID12.png -------------------------------------------------------------------------------- /assets/pk/SUBJID13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/assets/pk/SUBJID13.png -------------------------------------------------------------------------------- /assets/pk/SUBJID14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/assets/pk/SUBJID14.png -------------------------------------------------------------------------------- /assets/pk/SUBJID15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/assets/pk/SUBJID15.png -------------------------------------------------------------------------------- /assets/pk/SUBJID16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/assets/pk/SUBJID16.png -------------------------------------------------------------------------------- /assets/pk/SUBJID17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/assets/pk/SUBJID17.png -------------------------------------------------------------------------------- /assets/pk/SUBJID19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/assets/pk/SUBJID19.png -------------------------------------------------------------------------------- /assets/pk/SUBJID2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/assets/pk/SUBJID2.png -------------------------------------------------------------------------------- /assets/pk/SUBJID20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/assets/pk/SUBJID20.png -------------------------------------------------------------------------------- /assets/pk/SUBJID21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/assets/pk/SUBJID21.png -------------------------------------------------------------------------------- /assets/pk/SUBJID3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/assets/pk/SUBJID3.png -------------------------------------------------------------------------------- /assets/pk/SUBJID4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/assets/pk/SUBJID4.png -------------------------------------------------------------------------------- /assets/pk/SUBJID5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/assets/pk/SUBJID5.png -------------------------------------------------------------------------------- /assets/pk/SUBJID6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/assets/pk/SUBJID6.png -------------------------------------------------------------------------------- /assets/pk/SUBJID7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/assets/pk/SUBJID7.png -------------------------------------------------------------------------------- /assets/pk/SUBJID8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/assets/pk/SUBJID8.png -------------------------------------------------------------------------------- /assets/pk/SUBJID9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/assets/pk/SUBJID9.png -------------------------------------------------------------------------------- /data-raw/COPD-FEV1-smoking.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/data-raw/COPD-FEV1-smoking.csv -------------------------------------------------------------------------------- /data-raw/COPD-FEV1-smoking.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/data-raw/COPD-FEV1-smoking.xlsx -------------------------------------------------------------------------------- /data-raw/assay/Drug_X_PK.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/data-raw/assay/Drug_X_PK.csv -------------------------------------------------------------------------------- /data-raw/assay/Drug_X_PK.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/data-raw/assay/Drug_X_PK.xlsx -------------------------------------------------------------------------------- /data-raw/wnl/Xproject_Core output.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/data-raw/wnl/Xproject_Core output.rtf -------------------------------------------------------------------------------- /data-raw/wnl/Xproject_Final Parameters Pivoted.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/data-raw/wnl/Xproject_Final Parameters Pivoted.csv -------------------------------------------------------------------------------- /data-raw/wnl/Xproject_Final Parameters Pivoted.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/data-raw/wnl/Xproject_Final Parameters Pivoted.xls -------------------------------------------------------------------------------- /data/ncaIndometh.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/data/ncaIndometh.csv -------------------------------------------------------------------------------- /data/ncaIndomethLong.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/data/ncaIndomethLong.csv -------------------------------------------------------------------------------- /data/ncaIndomethStar.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/data/ncaIndomethStar.csv -------------------------------------------------------------------------------- /data/ncaTheoph.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/data/ncaTheoph.csv -------------------------------------------------------------------------------- /data/ncaTheophLong.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/data/ncaTheophLong.csv -------------------------------------------------------------------------------- /docs-presentation/DAC HYP.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/docs-presentation/DAC HYP.pptx -------------------------------------------------------------------------------- /docs-presentation/DeepDive_GitHub_180712.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/docs-presentation/DeepDive_GitHub_180712.pdf -------------------------------------------------------------------------------- /docs-presentation/Rweek09.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/docs-presentation/Rweek09.pptx -------------------------------------------------------------------------------- /docs-presentation/dplyr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/docs-presentation/dplyr.pdf -------------------------------------------------------------------------------- /docs-presentation/ggplot2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/docs-presentation/ggplot2.pdf -------------------------------------------------------------------------------- /docs-presentation/introduction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/docs-presentation/introduction.pdf -------------------------------------------------------------------------------- /docs-presentation/r-programming-week09-shan.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/docs-presentation/r-programming-week09-shan.pptx -------------------------------------------------------------------------------- /docs-presentation/r-programming-week10-skyoon.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/docs-presentation/r-programming-week10-skyoon.pptx -------------------------------------------------------------------------------- /docs-presentation/transl-research-design-2017-12-21.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/docs-presentation/transl-research-design-2017-12-21.pptx -------------------------------------------------------------------------------- /docs/Joint R&D Program workshop.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/docs/Joint R&D Program workshop.pptx -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | Various files will be added. 2 | -------------------------------------------------------------------------------- /drug-development-and-R/index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/drug-development-and-R/index.Rmd -------------------------------------------------------------------------------- /kitty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/kitty.png -------------------------------------------------------------------------------- /mante111.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/mante111.Rmd -------------------------------------------------------------------------------- /references/myref.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/references/myref.bib -------------------------------------------------------------------------------- /resources/Clinical-Pharmacology-Planning-Toolkit_2019.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/resources/Clinical-Pharmacology-Planning-Toolkit_2019.pdf -------------------------------------------------------------------------------- /resources/Xproject.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/resources/Xproject.docx -------------------------------------------------------------------------------- /resources/Xproject_Final_for_Word.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/resources/Xproject_Final_for_Word.csv -------------------------------------------------------------------------------- /result/ggplotfigs/SUBJID1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/result/ggplotfigs/SUBJID1.png -------------------------------------------------------------------------------- /result/ggplotfigs/SUBJID10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/result/ggplotfigs/SUBJID10.png -------------------------------------------------------------------------------- /result/ggplotfigs/SUBJID11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/result/ggplotfigs/SUBJID11.png -------------------------------------------------------------------------------- /result/ggplotfigs/SUBJID12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/result/ggplotfigs/SUBJID12.png -------------------------------------------------------------------------------- /result/ggplotfigs/SUBJID13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/result/ggplotfigs/SUBJID13.png -------------------------------------------------------------------------------- /result/ggplotfigs/SUBJID14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/result/ggplotfigs/SUBJID14.png -------------------------------------------------------------------------------- /result/ggplotfigs/SUBJID15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/result/ggplotfigs/SUBJID15.png -------------------------------------------------------------------------------- /result/ggplotfigs/SUBJID16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/result/ggplotfigs/SUBJID16.png -------------------------------------------------------------------------------- /result/ggplotfigs/SUBJID17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/result/ggplotfigs/SUBJID17.png -------------------------------------------------------------------------------- /result/ggplotfigs/SUBJID19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/result/ggplotfigs/SUBJID19.png -------------------------------------------------------------------------------- /result/ggplotfigs/SUBJID2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/result/ggplotfigs/SUBJID2.png -------------------------------------------------------------------------------- /result/ggplotfigs/SUBJID20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/result/ggplotfigs/SUBJID20.png -------------------------------------------------------------------------------- /result/ggplotfigs/SUBJID21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/result/ggplotfigs/SUBJID21.png -------------------------------------------------------------------------------- /result/ggplotfigs/SUBJID3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/result/ggplotfigs/SUBJID3.png -------------------------------------------------------------------------------- /result/ggplotfigs/SUBJID4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/result/ggplotfigs/SUBJID4.png -------------------------------------------------------------------------------- /result/ggplotfigs/SUBJID5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/result/ggplotfigs/SUBJID5.png -------------------------------------------------------------------------------- /result/ggplotfigs/SUBJID6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/result/ggplotfigs/SUBJID6.png -------------------------------------------------------------------------------- /result/ggplotfigs/SUBJID7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/result/ggplotfigs/SUBJID7.png -------------------------------------------------------------------------------- /result/ggplotfigs/SUBJID8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/result/ggplotfigs/SUBJID8.png -------------------------------------------------------------------------------- /result/ggplotfigs/SUBJID9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipetcpt/trainees/HEAD/result/ggplotfigs/SUBJID9.png --------------------------------------------------------------------------------