├── .gitignore ├── 00_install-pkgs.Rmd ├── 01_tidydata.R ├── 02_tbl_summary.R ├── 03_modeling.R ├── README.md ├── helper └── tidy_svyVGAM.R └── replicate_paper_NHANES_coffee.Rproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perlatex/replicate_paper_NHANES_coffee/HEAD/.gitignore -------------------------------------------------------------------------------- /00_install-pkgs.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perlatex/replicate_paper_NHANES_coffee/HEAD/00_install-pkgs.Rmd -------------------------------------------------------------------------------- /01_tidydata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perlatex/replicate_paper_NHANES_coffee/HEAD/01_tidydata.R -------------------------------------------------------------------------------- /02_tbl_summary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perlatex/replicate_paper_NHANES_coffee/HEAD/02_tbl_summary.R -------------------------------------------------------------------------------- /03_modeling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perlatex/replicate_paper_NHANES_coffee/HEAD/03_modeling.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perlatex/replicate_paper_NHANES_coffee/HEAD/README.md -------------------------------------------------------------------------------- /helper/tidy_svyVGAM.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perlatex/replicate_paper_NHANES_coffee/HEAD/helper/tidy_svyVGAM.R -------------------------------------------------------------------------------- /replicate_paper_NHANES_coffee.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perlatex/replicate_paper_NHANES_coffee/HEAD/replicate_paper_NHANES_coffee.Rproj --------------------------------------------------------------------------------