當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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)

輸出:

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 

範例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)

輸出:

 [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 



相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Get Summary of Results produced by Functions in R Programming – summary() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。