From fefe0e23d217b7171b640e2e2c6c2d3317d87657 Mon Sep 17 00:00:00 2001 From: brovolia <40294728+brovolia@users.noreply.github.com> Date: Tue, 23 Jan 2024 14:15:20 +0100 Subject: [PATCH] Delete R_project_1/lib directory --- R_project_1/lib/README.md | 3 --- R_project_1/lib/globals.R | 9 --------- R_project_1/lib/helpers.R | 4 ---- 3 files changed, 16 deletions(-) delete mode 100644 R_project_1/lib/README.md delete mode 100644 R_project_1/lib/globals.R delete mode 100644 R_project_1/lib/helpers.R diff --git a/R_project_1/lib/README.md b/R_project_1/lib/README.md deleted file mode 100644 index 8aee0e1..0000000 --- a/R_project_1/lib/README.md +++ /dev/null @@ -1,3 +0,0 @@ -Here you'll store any files that provide useful functionality for your work, but do not constitute a statistical analysis per se. Specifically, you should use the `lib/helpers.R` script to organize any functions you use in your project that aren't quite general enough to belong in a package. - -If you have project specific configuration that you'd like to store in the config object, you can specify that in `lib/globals.R`. This is the first file loaded from `lib`, so any functions in `lib`, `munge` or `src` can reference this configuration by simply using the `config$my_config_var` form. \ No newline at end of file diff --git a/R_project_1/lib/globals.R b/R_project_1/lib/globals.R deleted file mode 100644 index de2947f..0000000 --- a/R_project_1/lib/globals.R +++ /dev/null @@ -1,9 +0,0 @@ -# Add any project specific configuration here. -add.config( - apply.override = FALSE -) - -# Add project specific configuration that can be overridden from load.project() -add.config( - apply.override = TRUE -) diff --git a/R_project_1/lib/helpers.R b/R_project_1/lib/helpers.R deleted file mode 100644 index 32a29a4..0000000 --- a/R_project_1/lib/helpers.R +++ /dev/null @@ -1,4 +0,0 @@ -helper.function <- function() -{ - return(1) -}