Why does function c() accept an undocumented argument?

后端 未结 2 561
没有蜡笔的小新
没有蜡笔的小新 2020-12-20 11:31

The documentation for the base function c() shows its default arguments as

c(..., recursive = FALSE)

Now, if we define

<
2条回答
  •  不思量自难忘°
    2020-12-20 12:29

    I think that it is due to the recursive=TRUE which I believe must use the same code as unlist. The use.names parameter is described in ?unlist.

提交回复
热议问题