toString(base)
toString()所属R语言包:base
Convert an R Object to a Character String
R对象转换为字符串
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This is a helper function for format to produce a single character string describing an R object.
这是一个辅助函数format产生一个字符串,描述一个R对象。
用法----------Usage----------
toString(x, ...)
## Default S3 method:[默认方法]
toString(x, width = NULL, ...)
参数----------Arguments----------
参数:x
The object to be converted.
要转换的对象。
参数:width
Suggestion for the maximum field width. Values of NULL or 0 indicate no maximum. The minimum value accepted is 6 and smaller values are taken as 6.
建议的最大字段宽度。 NULL或0值表示没有上限。接受的最低值是6和较小的值是6。
参数:...
Optional arguments passed to or from methods.
可选参数传递到或从方法。
Details
详情----------Details----------
This is a generic function for which methods can be written: only the default method is described here. Most methods should honor the width argument to specify the maximum display width (as measured by nchar(type = "width") of the result.
这是一个通用的功能,哪些方法可以写成:这里所描述的只有默认的方法。大多数方法应该兑现width参数指定最大的显示宽度(由nchar(type = "width")结果作为衡量。
The default method first converts x to character and then concatenates the elements separated by ", ". If width is supplied and is not NULL, the default method returns the first width - 4 characters of the result with .... appended, if the full result would use more than width characters.
默认的方法,首先将字符x然后连接", "分隔的元素。 width如果供应和非NULL,默认的方法返回的第一个width - 4的结果字符....追加,如果完整的结果将使用超过width字符。
值----------Value----------
A character vector of length 1 is returned.
返回一个长度为1的特征向量。
作者(S)----------Author(s)----------
Robert Gentleman
参见----------See Also----------
format
format
举例----------Examples----------
x <- c("a", "b", "aaaaaaaaaaa")
toString(x)
toString(x, width=8)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|