try this function lappend
lappend <- function (lst, ...){ lst <- c(lst, list(...)) return(lst)}
and other suggestions from this page Add named vector to a list
Bye.
try this function lappend
lappend <- function (lst, ...){ lst <- c(lst, list(...)) return(lst)}
and other suggestions from this page Add named vector to a list
Bye.