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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。