From cb06947d6716cc97de9fa6b8993b5f647ea02b03 Mon Sep 17 00:00:00 2001 From: maufrais <maufrais@pasteur.fr> Date: Fri, 15 Jan 2021 16:56:49 +0100 Subject: [PATCH] fun_comp_list() example file --- examples_fun_comp_list.R | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 examples_fun_comp_list.R diff --git a/examples_fun_comp_list.R b/examples_fun_comp_list.R new file mode 100644 index 0000000..ebc1448 --- /dev/null +++ b/examples_fun_comp_list.R @@ -0,0 +1,18 @@ + + + + + +######## fun_comp_list() #### comparison of two lists + +### Datasets +list1 <- list(a = 1:5, b = LETTERS[1:2], d = matrix(1:6)) # list of integer, string, matrix + + +### Datasets info +list1 #list of integer, string, matrix + + +### Simple example +fun_comp_list(data1 = list1, data2 = list1) # comparison of two lists + -- GitLab