From 9ad7338183a9ed8cc50f7e9a3943e5d23d7b22a3 Mon Sep 17 00:00:00 2001 From: Kyle Belanger Date: Sun, 22 Jan 2023 15:26:44 -0500 Subject: [PATCH] Create 2-modeling.R --- ML/2-modeling.R | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 ML/2-modeling.R diff --git a/ML/2-modeling.R b/ML/2-modeling.R new file mode 100644 index 0000000..96284a2 --- /dev/null +++ b/ML/2-modeling.R @@ -0,0 +1,16 @@ +rm(list = ls(all.names = TRUE)) # Clear the memory of variables from previous run. +cat("\014") # Clear the console + + +# load packages ----------------------------------------------------------- + +box::use( + magrittr[`%>%`] + ,here[here] + ,dplyr + ,readr + ,tidyr + ,gp2 = ggplot2[ggplot, aes] + ,gtsummary +) +