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.
以下命令有什么区别:
abc <- 1:15 abcd <- c(1:15) abc abcd
输出是:
> abc <- 1:15 > abcd <- c(1:15) > abc [1] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 > abcd [1] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
c()是连接向量的函数。在您的示例中,您只提供一个向量 -1:15所以它们在功能上是相同的。 如果c()要连接两个或多个范围,例如在向量中没有 13,则需要:c(1:12, 14:15)
c()
1:15
c(1:12, 14:15)