quantile()
R語言中的函數用於在概率[0, 1]的數據集中創建樣本分位數。例如第一個分位數為 0.25[25%],第二個為 0.50[50%],第三個為 0.75[75%]。
用法: quantile(x)
參數:
x:數據集
範例1:
# R program to create
# quantiles of a data set
# Create a data frame
d <- data.frame( name = c("Abhi", "Bhavesh", "Chaman", "Dimri"),
age = c(7, 5, 9, 16),
ht = c(46, NA, NA, 69),
school = c("yes", "yes", "no", "no") )
# Calling quantile() Function
quantile(d$age)
輸出:
0% 25% 50% 75% 100% 5.00 6.50 8.00 10.75 16.00
範例2:
# R program to create
# quantiles of a data set
# Calling pre-defined data set
BOD
# Calling quantile() Function
quantile(BOD$demand)
quantile(BOD$Time)
輸出:
Time demand 1 1 8.3 2 2 10.3 3 3 19.0 4 4 16.0 5 5 15.6 6 7 19.8 0% 25% 50% 75% 100% 8.300 11.625 15.800 18.250 19.800 0% 25% 50% 75% 100% 1.00 2.25 3.50 4.75 7.00
相關用法
- R語言 qcauchy()用法及代碼示例
- R語言 qlogis()用法及代碼示例
- R語言 qlnorm()用法及代碼示例
- R語言 qpois()用法及代碼示例
- R語言 qnbinom()用法及代碼示例
- R語言 qf()用法及代碼示例
- R語言 qweibull()用法及代碼示例
- R語言 qtukey()用法及代碼示例
- R語言 qsignrank()用法及代碼示例
- R語言 qwilcox()用法及代碼示例
- R語言 qgeom()用法及代碼示例
- R語言 qunif()用法及代碼示例
- R語言 qchisq()用法及代碼示例
- R語言 sample()用法及代碼示例
- R語言 expand.grid()用法及代碼示例
- R語言 subset()用法及代碼示例
- R語言 table()用法及代碼示例
- R語言 data.matrix()用法及代碼示例
- R語言 with()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Create Quantiles of a Data Set in R Programming – quantile() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。