do.call() doesn't like base function “c” with a list
问题 I have a larger section of code but I've narrowed down the problem to this - So I want to return a concatenated list. do.call(c,"X") Error in do.call(c, "X") : second argument must be a list So above it complains about the SECOND argument not being a list. asimplelist=list(2,3,4) class(asimplelist) [1] "list" do.call(c,asimplelist) Error in do.call(c, asimplelist) : 'what' must be a function or character string Why will this not return a concatenated list ? C is a legit function, and it's