当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R语言 toString()用法及代码示例


R 语言中的 toString() 函数用于生成描述 R 对象的单个字符串。

用法: toString(x, width = NULL)

参数:
x:R对象
width:最大字段宽度的建议。 NULL 或 0 值表示没有最大值。可接受的最小值为 6,较小的值视为 6

范例1:


# R program to illustrate
# toString function
  
# Initializing a string vector
x <- c("GFG", "Geeks", "GeeksforGeekss")
  
# Calling the toString() function
toString(x)

输出:

[1] "GFG, Geeks, GeeksforGeekss"

范例2:


# R program to illustrate
# toString function
  
# Initializing a string vector
x <- c("GFG", "Geeks", "GeeksforGeekss")
  
# Calling the toString() function
toString(x, width = 2)
toString(x, width = 8)
toString(x, width = 10)

输出:

[1] "GF...."
[1] "GFG, ...."
[1] "GFG, G...."

相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Convert elements of a Vector to Strings in R Language – toString() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。