From 10bb038cdfc1c9a22d7bd64a371b41490dafc90d Mon Sep 17 00:00:00 2001 From: Yandrik Date: Mon, 6 May 2024 08:54:44 +0200 Subject: [PATCH] refactor: moved files to intro --- .gitignore | 8 ++++---- Rplots.pdf => intro/Rplots.pdf | Bin Rplots1.pdf => intro/Rplots1.pdf | Bin apply.R => intro/apply.R | 0 classes.R => intro/classes.R | 0 create_lists.R => intro/create_lists.R | 0 create_matrices.R => intro/create_matrices.R | 0 create_vectors.R => intro/create_vectors.R | 0 dataframes.R => intro/dataframes.R | 0 .../evoalgs-r-practise.Rproj | 0 functions.R => intro/functions.R | 0 if_else.R => intro/if_else.R | 0 lists_and_vectors.R => intro/lists_and_vectors.R | 0 loops.R => intro/loops.R | 0 operators.R => intro/operators.R | 0 simple_plotting.R => intro/simple_plotting.R | 0 testfile-1.R => intro/testfile-1.R | 0 .../vectors_and_matrices.R | 0 18 files changed, 4 insertions(+), 4 deletions(-) rename Rplots.pdf => intro/Rplots.pdf (100%) rename Rplots1.pdf => intro/Rplots1.pdf (100%) rename apply.R => intro/apply.R (100%) rename classes.R => intro/classes.R (100%) rename create_lists.R => intro/create_lists.R (100%) rename create_matrices.R => intro/create_matrices.R (100%) rename create_vectors.R => intro/create_vectors.R (100%) rename dataframes.R => intro/dataframes.R (100%) rename evoalgs-r-practise.Rproj => intro/evoalgs-r-practise.Rproj (100%) rename functions.R => intro/functions.R (100%) rename if_else.R => intro/if_else.R (100%) rename lists_and_vectors.R => intro/lists_and_vectors.R (100%) rename loops.R => intro/loops.R (100%) rename operators.R => intro/operators.R (100%) rename simple_plotting.R => intro/simple_plotting.R (100%) rename testfile-1.R => intro/testfile-1.R (100%) rename vectors_and_matrices.R => intro/vectors_and_matrices.R (100%) diff --git a/.gitignore b/.gitignore index 5b6a065..f19329a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -.Rproj.user -.Rhistory -.RData -.Ruserdata +**/.Rproj.user +**/.Rhistory +**/.RData +**/.Ruserdata diff --git a/Rplots.pdf b/intro/Rplots.pdf similarity index 100% rename from Rplots.pdf rename to intro/Rplots.pdf diff --git a/Rplots1.pdf b/intro/Rplots1.pdf similarity index 100% rename from Rplots1.pdf rename to intro/Rplots1.pdf diff --git a/apply.R b/intro/apply.R similarity index 100% rename from apply.R rename to intro/apply.R diff --git a/classes.R b/intro/classes.R similarity index 100% rename from classes.R rename to intro/classes.R diff --git a/create_lists.R b/intro/create_lists.R similarity index 100% rename from create_lists.R rename to intro/create_lists.R diff --git a/create_matrices.R b/intro/create_matrices.R similarity index 100% rename from create_matrices.R rename to intro/create_matrices.R diff --git a/create_vectors.R b/intro/create_vectors.R similarity index 100% rename from create_vectors.R rename to intro/create_vectors.R diff --git a/dataframes.R b/intro/dataframes.R similarity index 100% rename from dataframes.R rename to intro/dataframes.R diff --git a/evoalgs-r-practise.Rproj b/intro/evoalgs-r-practise.Rproj similarity index 100% rename from evoalgs-r-practise.Rproj rename to intro/evoalgs-r-practise.Rproj diff --git a/functions.R b/intro/functions.R similarity index 100% rename from functions.R rename to intro/functions.R diff --git a/if_else.R b/intro/if_else.R similarity index 100% rename from if_else.R rename to intro/if_else.R diff --git a/lists_and_vectors.R b/intro/lists_and_vectors.R similarity index 100% rename from lists_and_vectors.R rename to intro/lists_and_vectors.R diff --git a/loops.R b/intro/loops.R similarity index 100% rename from loops.R rename to intro/loops.R diff --git a/operators.R b/intro/operators.R similarity index 100% rename from operators.R rename to intro/operators.R diff --git a/simple_plotting.R b/intro/simple_plotting.R similarity index 100% rename from simple_plotting.R rename to intro/simple_plotting.R diff --git a/testfile-1.R b/intro/testfile-1.R similarity index 100% rename from testfile-1.R rename to intro/testfile-1.R diff --git a/vectors_and_matrices.R b/intro/vectors_and_matrices.R similarity index 100% rename from vectors_and_matrices.R rename to intro/vectors_and_matrices.R