gitextract_fuj2c_ui/ ├── .gitignore ├── Old/ │ ├── BookMake.R │ ├── CoverGraphics/ │ │ └── 2ndEditionCover_v1/ │ │ ├── index.html │ │ └── main.css │ ├── EarlyOutline.md │ ├── README.md │ ├── Source-v2/ │ │ ├── .gitignore │ │ ├── Children/ │ │ │ ├── Chapter1/ │ │ │ │ ├── chapter1.Rnw │ │ │ │ └── chapter1.md │ │ │ ├── Chapter10/ │ │ │ │ └── chapter10.Rnw │ │ │ ├── Chapter11/ │ │ │ │ └── chapter11.Rnw │ │ │ ├── Chapter12/ │ │ │ │ └── chapter12.Rnw │ │ │ ├── Chapter13/ │ │ │ │ └── chapter13.Rnw │ │ │ ├── Chapter14/ │ │ │ │ └── chapter14.Rnw │ │ │ ├── Chapter2/ │ │ │ │ └── chapter2.Rnw │ │ │ ├── Chapter3/ │ │ │ │ └── chapter3.Rnw │ │ │ ├── Chapter4/ │ │ │ │ └── chapter4.Rnw │ │ │ ├── Chapter5/ │ │ │ │ └── chapter5.Rnw │ │ │ ├── Chapter6/ │ │ │ │ └── chapter6.Rnw │ │ │ ├── Chapter7/ │ │ │ │ └── chapter7.Rnw │ │ │ ├── Chapter8/ │ │ │ │ └── chapter8.Rnw │ │ │ ├── Chapter9/ │ │ │ │ └── chapter9.Rnw │ │ │ └── FrontMatter/ │ │ │ ├── AdditionalResources/ │ │ │ │ └── AdditionalResources.Rnw │ │ │ ├── Packages.Rnw │ │ │ ├── Preface.Rnw │ │ │ ├── StylisticConventions.md │ │ │ └── rep-res-PackagesCited.bib │ │ ├── Rep-Res-Parent.Rnw │ │ ├── Rep-Res-Parent.toc │ │ ├── krantz.cls │ │ └── rep-res-book.bib │ ├── SourceOld/ │ │ ├── Chapter1/ │ │ │ └── chapter1.Rmd │ │ ├── Chapter10/ │ │ │ └── chapter10.Rmd │ │ ├── Chapter11/ │ │ │ └── chapter11.Rmd │ │ ├── Chapter12/ │ │ │ └── chapter12.Rmd │ │ ├── Chapter13/ │ │ │ └── chapter13.Rmd │ │ ├── Chapter14/ │ │ │ └── chapter14.Rmd │ │ ├── Chapter2/ │ │ │ └── chapter2.Rmd │ │ ├── Chapter3/ │ │ │ └── chapter3.Rmd │ │ ├── Chapter4/ │ │ │ └── chapter4.Rmd │ │ ├── Chapter5/ │ │ │ └── chapter5.Rmd │ │ ├── Chapter6/ │ │ │ └── chapter6.Rmd │ │ ├── Chapter7/ │ │ │ └── chapter7.Rmd │ │ ├── Chapter8/ │ │ │ └── chapter8.Rmd │ │ └── Chapter9/ │ │ └── chapter9.Rmd │ └── Writing_Setup/ │ ├── Early_Book_Origins.md │ ├── HeaderFooter/ │ │ ├── IndvChapterFoot.tex │ │ └── IndvChapterHead.tex │ ├── IndvChapter.sh │ ├── IndvChapter1.Rnw │ ├── OldScripts/ │ │ ├── ConvertRmdtoRnw.sh │ │ └── Rmd_Book.sh │ ├── ProductionNotes.md │ ├── Rnw_Book.sh │ └── TableofContentPDF/ │ ├── GandrudRep-Res-Book-TOC.fdb_latexmk │ ├── GandrudRep-Res-Book-TOC.tex │ └── krantz.cls ├── README.Rmd ├── README.md └── rep-res-3rd-edition/ ├── .gitignore ├── 01-author.Rmd ├── 01-stylistic-conventions.Rmd ├── 02-additional-resources.Rmd ├── 03-introduction.Rmd ├── 04-getting-started.Rmd ├── 05-start-R.Rmd ├── 06-file-management.Rmd ├── 07-storage.Rmd ├── 08-gather.Rmd ├── 09-clean.Rmd ├── 10-modeling.Rmd ├── 11-tables.Rmd ├── 12-figures.Rmd ├── 13-latex.Rmd ├── 14-web.Rmd ├── 16-conclusion.Rmd ├── 99-references.Rmd ├── LICENSE ├── README.md ├── _bookdown.yml ├── _output.yml ├── book.bib ├── css/ │ └── style.css ├── index.Rmd ├── krantz.cls ├── latex/ │ ├── after_body.tex │ ├── before_body.tex │ └── preamble.tex ├── packages.bib └── rep-res-3rd-edition.Rproj