reproducible research
play

Reproducible Research Liz Bageant erb32@cornell.edu Cornell - PowerPoint PPT Presentation

and Collabora*ve Reproducible Research Liz Bageant erb32@cornell.edu Cornell University Outline 1. ScienAfic method and research failures 2. Defining reproducible research 3. Strategies for reproducibility 1. ScienAfic method and research


  1. and Collabora*ve Reproducible Research Liz Bageant erb32@cornell.edu Cornell University

  2. Outline 1. ScienAfic method and research failures 2. Defining reproducible research 3. Strategies for reproducibility

  3. 1. ScienAfic method and research failure The scienAfic method ObservaAon Ask QuesAon Conclusions Background Form Research Hypothesis Report Results SchemaAc courtesy of Erika Mudrak Data Results Design Carry Out Experiment / Experiment / Analysis Study Study

  4. 1. ScienAfic method and research failure ConAnuum of research failure Failure of process Failure of integrity Disorganiza*on Egregious behavior Deliberate manipula.on of data to get results -P-hacking -”Fishing expedi.ons”

  5. 1. ScienAfic method and research failure P-hacking / fishing expediAon ObservaAon Ask QuesAon Conclusions Background Form Research Hypothesis Report Results P<0.05 Data Results Design Carry Out Experiment / Experiment / Analysis Study Study

  6. 1. ScienAfic method and research failure ConAnuum of research failure Failure of process Failure of integrity Disorganiza*on Egregious behavior Deliberate manipula.on HARK-ing of data to get results -P-hacking -”Fishing expedi.ons”

  7. 1. ScienAfic method and research failure P-hack your way to scienAfic glory hVps://projects.fivethirtyeight.com/p-hacking/

  8. 1. ScienAfic method and research failure H ypothesizing A Yer R esults are K nown (HARK-ing) ObservaAon Ask QuesAon Conclusions Background Form Research Hypothesis Report Results Data Results Design Carry Out Experiment / Experiment / Analysis Study Study

  9. 1. ScienAfic method and research failure Is HARK-ing ever okay? Research Goals Exploratory Confirmatory • Exploratory research = hypothesis generaAon • Confirmatory research = hypothesis tesAng

  10. 1. ScienAfic method and research failure ConAnuum of research failure Failure of process Failure of integrity Disorganiza*on Egregious behavior Deliberate manipula.on HARK-ing of data to get results “Garden of forking paths” -P-hacking -”Fishing expedi.ons”

  11. 1. ScienAfic method and research failure The garden of forking paths (Gelman and Loken, 2013) Other studies control for X, so maybe I should add that in? I tried this thing but it wasn’t significant, do I report it? This observa.on seems funny—should I throw it out? This observa.on seems funny—should I throw it out? I tried this thing but it wasn’t significant, do I report it? This distribu.on looks funny—how can I fix it? Logit, probit or linear probability model? Impute missing data? Other studies control for X, so maybe I should add that in? Report Can we really assume that X is exogenous? This distribu.on looks funny—how can I fix it? Results Everyone else does. Can we really assume that X is exogenous? My interac.on isn’t significant … should I take it out? Everyone else does. Impute missing data? Those results didn’t make sense, should I report them anyway? My interac.on isn’t significant … should I take it out? To winsorize or not to winsorize … . To winsorize or not to winsorize … . Data Results Impute missing data? Those results didn’t make sense, Should I log transform this? Should I log transform this? should I report them anyway? Logit, probit or linear probability model? Analysis

  12. 1. ScienAfic method and research failure ConAnuum of research failure Failure of process Failure of integrity Disorganiza*on Egregious behavior Deliberate manipula.on HARK-ing Coding errors of data to get results “Garden of forking paths” Poor documenta.on -P-hacking -”Fishing expedi.ons”

  13. 1. ScienAfic method and research failure To avoid the perils of the garden, HARK-ing, P-hacking, and silly mistakes … • Integrity! --> Be honest with yourself. • Transparency! --> Be honest with your readers. • Do you feel good enough about your decision- making processes to write them down for all to see? Reproducible research!

  14. 2. Defining Reproducibility Replicability vs reproducibility • Replicability – EssenAal to the scienAfic method – repeaAng a study from scratch using new data, analyst and code – if a given relaAonship between X and Y is true, it should show up in mulAple studies

  15. 2. Defining Reproducibility Replicability ObservaAon Ask QuesAon Conclusions Background Form Research Hypothesis Report Results Data Results Design Carry Out Experiment / Experiment / Analysis Study Study

  16. 2. Defining Reproducibility Replicability vs reproducibility • Reproducibility – Gefng the exact same result as an exisAng study using new analyst, but same data and code – Recently tractable due to compuAng and soYware advances

  17. 2. Defining Reproducibility Reproducibility ObservaAon Ask QuesAon Conclusions Background Form Research Hypothesis Report Results Data Results Design Carry Out Experiment / Experiment / Analysis Study Study

  18. 2. Defining Reproducibility Reproducibility • Facilitate transparency by communicaAng procedures easily • IdenAfy inadvertent errors • Avoid embarrassment • Facilitate collaboraAon • Save Ame • Greater potenAal for extension of work --> higher impact over Ame

  19. 2. Defining Reproducibility Who are you accountable to? You! You next week You in 6 months Colleagues/Coauthors Reviewers Researchers in your field The public / the integrity of science

  20. 2. Defining Reproducibility What are we aiming for? • Sufficient documentaAon to bring an unfamiliar user up to speed – Codebook – Readme file – Variable and value labels in analysis data set – EffecAve comments in code • A single click executes your project from start to finish. – Downloading – Reformafng – Cleaning and variable construcAon – Analysis – Output tables, graphs, figures – Reproducible report

  21. 2. Defining Reproducibility How do we get there? • Separate the phases of data work • SystemaAc file and naming structures • EffecAve and organized scripAng • Reproducible reports

  22. 3. Strategies for Reproducibility Separate phases of data work 1. Data conversion/cleaning/variable construcAon 2. Analysis 3. Report generaAon

  23. 3. Strategies for Reproducibility Naming convenAons • Agree with your collaborators on naming convenAons. • Human readable – Short, useful names – InformaAon on content • Machine readable – Avoid special characters, spaces, etc • CamelCase, ALLCAPS, lowercase, alloneword, underscore_between – Consistent naming to facilitate searching • Default ordering – Date format YYYYMMDD – Other numbers—add leading zeros • Never call something “final”. It probably isn’t.

  24. 3. Strategies for Reproducibility SystemaAc file structure • Must be common to all users! • Choose a file structure and sAck to it. • Make skeleton of folders when you start a project.

  25. /dta • Copy of read-only original files exactly as obtained. /original /stata raw Data aYer conversion to format of choice /clean Variable- or module-specific clean files Data set(s) you will use for analysis /analysis /documenta*on • Any/all codebooks or metadata related to data /metadata CollecAon of documents where the data was /reports used, cited, described /do • /cleaning Cleaning, merging, reshaping, variable construcAon scripts /analysis Analysis scripts master.do Script that sets up relaAve file paths and calls all scripts /output • /figures Subfolders depend on type of project /tables /old output Keep for reference, if you choose. /wri*ng • Separate folders if mulAple papers using the same data / paper 1 / paper 2 OpAonal as needed /notes Keep older versions of paper, but get them out of the way /old draYs /temp • Get rid of cluVer as you make it

  26. 3. Strategies for Reproducibility ScripAng Aps • Data + Script = Reproducible Output • Master script: Runs other scripts in correct order • Modular scripAng vs. one big file – Separate types of processes (cleaning, analysis) – Avoid repeaAng blocks of code: Separate program for repeated processes • Notes/comments. – Consistent headers – Useful comments, not expressions of feeling • Clarity > efficiency? Consider your collaborators. • Re-run script from the beginning regularly. It must run!

  27. 3. Strategies for Reproducibility Reproducible Reports • Integrate code into the prose of your report • Single file that executes all steps of data process and outputs a final paper • Know exactly what data was used for analysis, what code made which figure, etc. • Disadvantages—learning curve, iniAal investment. • AlternaAve method: Copy and paste.

  28. Avoid research failures by implemen*ng reproducible research techniques to improve organiza*on and transparency 1. Separate phases of research 2. SystemaAc file naming and structure 3. EffecAve and organized scripAng 4. Reproducible reports • PrioriAze elements that are aVainable for you. Your future self thanks you!

  29. AddiAonal resources • P-hack your way to scienAfic glory! hVps://projects.fivethirtyeight.com/p- hacking/ • Gelman and Loken (2013) Garden of Forking Paths. hVp://www.stat.columbia.edu/~gelman/ research/unpublished/p_hacking.pdf

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