Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Rのc()関数に含めることができるアイテム数(100アイテム)に制限があるようです。この制限を回避する方法はありますか? 前もって感謝します。
制限がありますが、それはベクトルの長さの制限であり、 の制限ではありませんc。
c
length(eval(call('c', 1:(2^31-1)))) ## [1] 2147483647 length(eval(call('c', 1:(2^31)))) ## Error in 1:(2^31) : result would be too long a vector