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中创建一个以字符开头然后以数字开头的序列
我想创建如下序列: y1998 y1999 y2000 到 y2011
有::
:
1998:2011
和'或"创建字符串常量:
'
"
'y'
并paste0连接两者:
paste0
paste0('y', 1998:2011)
请注意该paste0函数如何逐个元素地应用于第二个参数。这是 R 的优势之一。