implode(tractor.base)
implode()所属R语言包:tractor.base
Create a character string by concatenating the elements of a vector
通过串联的向量的元素创建一个字符串
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Create a character string by concatenating the elements of a vector, using a separator and optional final separator.
创建一个字符串,通过连接的元素的向量,使用的隔板和可选的最后的分隔符。
用法----------Usage----------
implode(strings, sep = "", finalSep = NULL)
参数----------Arguments----------
参数:strings
A vector, which will be coerced to mode character.
一个向量,这将被强制转换为模式character。
参数:sep
A unit length character vector giving the separator to insert between elements.
单位长度的字符向量元素之间的分离器插入。
参数:finalSep
An optional unit length character vector giving the separator to insert between the final two elements.
一个可选的单位长度的字符向量的最后两个元素之间的分离插入。
值----------Value----------
A character vector of length one.
向量的长度为1的字符。
(作者)----------Author(s)----------
Jon Clayden
参考文献----------References----------
参见----------See Also----------
paste
paste
实例----------Examples----------
implode(1:3, ", ") # "1, 2, 3"[“1,2,3”]
implode(1:3, ", ", " and ") # "1, 2 and 3"[“1,2和3”]
implode(1:2, ", ", " and ") # "1 and 2"[“1和2”]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|