diff --git a/examples_fun_comp_list.R b/examples_fun_comp_list.R new file mode 100644 index 0000000000000000000000000000000000000000..ebc14485a5d5211c68b667c087973207553cc29a --- /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 +