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 中有一个包含 3000 个向量的列表。如何从该列表的前 1000 个元素创建一个数据框?
干杯
你可以做:
data.frame(myList[1:1000])
这假设向量都是相同的长度。如果不是,则值将被回收。