R 語言中的 print() 函數用於將參數打印到屏幕上。
用法: print(x, digits, na.print)
參數:
x:要顯示的指定參數
digits:定義最小有效位數
na.print:表示 NA 值輸出格式
範例1:
# R program to illustrate
# print function
# Creating a data frame
x <- cars[1:5, ]
# Calling the print() function
# to print the above data frame
print(x)
輸出:
speed dist 1 4 2 2 4 10 3 7 4 4 7 22 5 8 16
範例2:
# R program to illustrate
# print function
# Initializing a number
x <- 15 / 7
# Calling the print() function
# using digits parameter
print(x, digits = 2)
print(x, digits = 3)
print(x, digits = 4)
輸出:
[1] 2.1 [1] 2.14 [1] 2.143
範例3:
# R program to illustrate
# print function
# Creating a matrix
x <- matrix(c(2, NA, 5, NA, 8, NA, 22, 67, 43),
nrow = 3, byrow = TRUE)
# Calling the print() function
# using na.print parameter
print(x, na.print = "")
輸出:
[, 1] [, 2] [, 3] [1, ] 2 5 [2, ] 8 [3, ] 22 67 43
相關用法
- R語言 expand.grid()用法及代碼示例
- R語言 as.name()用法及代碼示例
- R語言 is.name()用法及代碼示例
- R語言 seq_along()用法及代碼示例
- R語言 cat()用法及代碼示例
- R語言 is.primitive()用法及代碼示例
- R語言 identity()用法及代碼示例
- R語言 noquote()用法及代碼示例
- R語言 sprintf()用法及代碼示例
- R語言 dunif()用法及代碼示例
- R語言 lapply()用法及代碼示例
- R語言 optimize()用法及代碼示例
- R語言 lgamma()用法及代碼示例
- R語言 digamma()用法及代碼示例
- R語言 trigamma()用法及代碼示例
- R語言 args()用法及代碼示例
- R語言 rapply()用法及代碼示例
- R語言 tapply()用法及代碼示例
- R語言 sapply()用法及代碼示例
- R語言 qcauchy()用法及代碼示例
- R語言 qlogis()用法及代碼示例
- R語言 qlnorm()用法及代碼示例
- R語言 qpois()用法及代碼示例
- R語言 qnbinom()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Print the Argument to the Screen in R Programming – print() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。