當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。