From 6f9cbf41e66117974ed3126d1990944952edc4e3 Mon Sep 17 00:00:00 2001 From: Kyle Belanger Date: Wed, 4 Jan 2023 08:27:49 -0500 Subject: [PATCH] Update 0-greeter-dbcreation.R --- ML/0-greeter-dbcreation.R | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/ML/0-greeter-dbcreation.R b/ML/0-greeter-dbcreation.R index 8d51990..6157c2b 100644 --- a/ML/0-greeter-dbcreation.R +++ b/ML/0-greeter-dbcreation.R @@ -1,3 +1,14 @@ # The follow script rebuilds a local copy of the MIMIC-IV database # for the purpose of this project only the patients, labitems, and labevents # tables are included, and the csv's need to be in the data-unshared folder +# this script only needs to be run once on any computer performing analysis + +rm(list = ls(all.names = TRUE)) # Clear the memory of variables from previous run. +cat("\014") # Clear the console + + +# load packages ----------------------------------------------------------- + +box::use( + magrittr[`%>%`] +)