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...."
相關用法
- R語言 as.vector()用法及代碼示例
- R語言 toString()用法及代碼示例
- R語言 unlist()用法及代碼示例
- R語言 topo.colors()用法及代碼示例
- R語言 cm.colors()用法及代碼示例
- R語言 terrain.colors()用法及代碼示例
- R語言 is.vector()用法及代碼示例
- R語言 as.factor()用法及代碼示例
- R語言 as.logical()用法及代碼示例
- R DataFrame轉vector用法及代碼示例
- R Named Vector轉DataFrame用法及代碼示例
- R Matrix轉Vector用法及代碼示例
- R語言 make.unique()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Convert elements of a Vector to Strings in R Language – toString() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。