I was looking for some solution about adding new value into list. Eg. I have list of values
n = c(2, 3, 5)
s = c("aa", "bb", "cc", "dd", "ee")
b = c(TRUE, FALSE, TRUE, FALSE, FALSE)
x = list(n, s, b, 3) # x contains copies of n, s, b
and I need to add value 6 to list x to have in x[[1]] 2, 3, 5, 6 values.
How do I do that?