From 1c9d9e8930facb73385238fd085428a711288b3d Mon Sep 17 00:00:00 2001 From: Christine Lock Date: Wed, 9 Sep 2026 15:36:33 +0200 Subject: [PATCH] Added values --- params/CL_params.R | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 params/CL_params.R diff --git a/params/CL_params.R b/params/CL_params.R new file mode 100644 index 0000000..14a7b8d --- /dev/null +++ b/params/CL_params.R @@ -0,0 +1,21 @@ +# !! PLEASE DO NOT EDIT THIS FILE !! +# ** make a copy and edit that instead ** +# ________________________________________________ +# input parameters + +# sigma2: 0 < value < 5 +sig2 <- 4.2 + +# e.g. "anas_krystallinus" +species.name <- "clock" + +# e.g. "red" +color <- "light green" + +# tip: pick a color using rstudio colour picker. +# Addins > Colour Picker (to install: install.packages("colourpicker")) + # Note: please do not include install.packages("PKG-NAME") in your final R script! + # This can break part of our rendering pipeline. Please install at your command + # line or simply ask your instructor if uncertain. +# If you use this, don't forget to put it back as a comment +# before pushing and creating your pull request.