美文网首页
2.2.5 字符型向量

2.2.5 字符型向量

作者: Andrew_bao | 来源:发表于2017-05-16 20:46 被阅读0次

    1.向量元素可以取字符串值

    y<-c("a","b","c","d","e","f","g","k")

    2.字符串连接

    paste("My","job")

    3.字符串实例

    1.生成向量X1-X6,自动化完成

    sep:a character string to separate the terms

    labels<-paste("X",1:6,sep = "")

    2.生成1到4的字符串

    paste(1:4)

    3.连接两个字符串,类似Python中print()

    paste("Today is",date())

    4.生成小数,以.分隔开

    collapse:an optional character string to separate the results.

    paste(c("a","b"),collapse = '.')

    相关文章

      网友评论

          本文标题:2.2.5 字符型向量

          本文链接:https://www.haomeiwen.com/subject/daqrxxtx.html