R语言 获取函数产生的结果摘要 – summary()函数
R语言中的 summary() 函数是一个通用函数,用于产生各种模型拟合函数的结果总结。
语法: summary(object, maxsum)
参数:
object: R对象
maxsum: 整数值,表示应该显示多少个因子的水平。
例1 :
# R program to illustrate
# summary function
# Initializing a character and
# integer vector
x <- c("GFG", "gfg", "Geek", "Geeks")
y <- c(1, 2, 3, 4)
# Calling summary() function
summary(x)
summary(y)
R
输出
Length Class Mode
4 character character
Min. 1st Qu. Median Mean 3rd Qu. Max.
1.00 1.75 2.50 2.50 3.25 4.00
R
例2 :
# R program to illustrate
# summary function
# Initializing a data set
state.region
# Calling summary() function to
# get the factor for above data set
# Getting all the possible levels
summary(state.region)
# Getting maximum 3 levels
summary(state.region, maxsum = 3)
R
输出
[1] South West West South West
[6] West Northeast South South South
[11] West West North Central North Central North Central
[16] North Central South South Northeast South
[21] Northeast North Central North Central South North Central
[26] West North Central West Northeast Northeast
[31] West Northeast South North Central North Central
[36] South West Northeast Northeast South
[41] North Central South South West Northeast
[46] South West South North Central West
Levels: Northeast South North Central West
Northeast South North Central West
9 16 12 13
South West (Other)
16 13 21
R