SyntaxFix
Write A Post
Hire A Developer
Questions
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.