toString()
R語言中的函數用於將對象轉換為單個字符串。
用法: toString(x, width)
參數:
x:Object
width:最大字符串寬度
範例1:
# R program to convert an object to string
# Creating a vector
x <- c("Geeks", "for", "geeks")
# Calling toString() Function
toString(x)
toString(x, width = 12)
輸出:
[1] "Geeks, for, geeks" [1] "Geeks, f...."
範例2:
# R program to convert an object to string
# Creating a matrix
x <- matrix(c(1:9), 3, 3)
# Calling toString() Function
toString(x)
輸出:
[1] "1, 2, 3, 4, 5, 6, 7, 8, 9"
相關用法
- R語言 type.convert()用法及代碼示例
- R語言 toString()用法及代碼示例
- R語言 as.list()用法及代碼示例
- R語言 as.character()用法及代碼示例
- R語言 as.integer()用法及代碼示例
- R語言 as.logical()用法及代碼示例
- R語言 as.vector()用法及代碼示例
- R語言 as.matrix()用法及代碼示例
- R語言 as.table()用法及代碼示例
- R語言 strftime()用法及代碼示例
- R語言 sapply()用法及代碼示例
- R語言 toupper()用法及代碼示例
- R語言 dQuote()用法及代碼示例
- R語言 sQuote()用法及代碼示例
- R語言 strtoi()用法及代碼示例
- R語言 as.Date()用法及代碼示例
- R語言 parse()用法及代碼示例
- R語言 deparse()用法及代碼示例
- R語言 identity()用法及代碼示例
- R語言 which()用法及代碼示例
- R語言 call()用法及代碼示例
- R語言 cumprod()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Convert an Object to a String in R Programming – toString() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。