- Have you heard about it?
- Maybe you've heard about the Cousera Reproducible Research course
- How would you define it?
- Is it the same as replicability?
- Is it important?
June 19, 2015
Science moves forward then discoveries are replicated and reproduced
Replication, the practice of independently implementing scientific experiments to validate specific findings, is the cornerstone of discovering scientific truth.
Reproducibility can be thought of as a different standard of validity from replication because it forgoes independent data collection and uses the methods and data collected by the original investigator.
The sharing of analytic data and computer codes uses to map those data into computational results is central to any comprehensive definition of reproducibility.
Except for the simplest of analyses, the computer code used to analyze a dataset is the only record that permits others to fully understand what a researcher has done.
sessionInfo()
## R version 3.2.0 Patched (2015-05-18 r68382) ## Platform: x86_64-apple-darwin10.8.0 (64-bit) ## Running under: OS X 10.8.5 (Mountain Lion) ## ## locale: ## [1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8 ## ## attached base packages: ## [1] stats graphics grDevices utils datasets methods base ## ## other attached packages: ## [1] devtools_1.8.0 knitr_1.10.5 rmarkdown_0.7 ## ## loaded via a namespace (and not attached): ## [1] Rcpp_0.11.6 digest_0.6.8 git2r_0.10.1 formatR_1.2 ## [5] magrittr_1.5 evaluate_0.7 stringi_0.4-1 curl_0.8 ## [9] rstudioapi_0.3.1 xml2_0.1.1 tools_3.2.0 stringr_1.0.0 ## [13] yaml_2.1.13 rversions_1.0.1 memoise_0.2.1 htmltools_0.2.6
library('devtools'); session_info()
## Session info --------------------------------------------------------------
## setting value ## version R version 3.2.0 Patched (2015-05-18 r68382) ## system x86_64, darwin10.8.0 ## ui AQUA ## language (EN) ## collate en_US.UTF-8 ## tz America/New_York
## Packages ------------------------------------------------------------------
## package * version date source ## curl 0.8 2015-06-06 CRAN (R 3.2.0) ## devtools * 1.8.0 2015-05-09 CRAN (R 3.2.0) ## digest 0.6.8 2014-12-31 CRAN (R 3.2.0) ## evaluate 0.7 2015-04-21 CRAN (R 3.2.0) ## formatR 1.2 2015-04-21 CRAN (R 3.2.0) ## git2r 0.10.1 2015-05-07 CRAN (R 3.2.0) ## htmltools 0.2.6 2014-09-08 CRAN (R 3.2.0) ## knitr * 1.10.5 2015-05-06 CRAN (R 3.2.0) ## magrittr 1.5 2014-11-22 CRAN (R 3.2.0) ## memoise 0.2.1 2014-04-22 CRAN (R 3.2.0) ## Rcpp 0.11.6 2015-05-01 CRAN (R 3.2.0) ## rmarkdown * 0.7 2015-06-13 CRAN (R 3.2.0) ## rstudioapi 0.3.1 2015-04-07 CRAN (R 3.2.0) ## rversions 1.0.1 2015-06-06 CRAN (R 3.2.0) ## stringi 0.4-1 2014-12-14 CRAN (R 3.2.0) ## stringr 1.0.0 2015-04-30 CRAN (R 3.2.0) ## xml2 0.1.1 2015-06-02 CRAN (R 3.2.0) ## yaml 2.1.13 2014-06-12 CRAN (R 3.2.0)