R語言
birthday
位於 stats
包(package)。 說明
計算廣義生日悖論問題的答案。 pbirthday
計算重合概率,qbirthday
計算至少具有指定重合概率所需的最小觀測值數量。
用法
qbirthday(prob = 0.5, classes = 365, coincident = 2)
pbirthday(n, classes = 365, coincident = 2)
參數
classes |
人們可以分為多少個不同的類別 |
prob |
期望的重合概率 |
n |
人的數量 |
coincident |
屬於同一類別的人數 |
細節
生日悖論是,極少數人(23 歲)足以有 50-50 的機會其中兩個或更多人擁有相同的生日。此函數將計算推廣到 0.5 以外的概率、2 以外的同時事件數以及 365 以外的類數。
使用的公式是 coincident > 2
的近似公式。該近似對於 prob
的中等值非常好,但對於非常小的概率則不太好。
值
qbirthday |
至少需要 |
pbirthday |
指定巧合的概率。 |
例子
require(graphics)
## the standard version
qbirthday() # 23
## probability of > 2 people with the same birthday
pbirthday(23, coincident = 3)
## examples from Diaconis & Mosteller p. 858.
## 'coincidence' is that husband, wife, daughter all born on the 16th
qbirthday(classes = 30, coincident = 3) # approximately 18
qbirthday(coincident = 4) # exact value 187
qbirthday(coincident = 10) # exact value 1181
## same 4-digit PIN number
qbirthday(classes = 10^4)
## 0.9 probability of three or more coincident birthdays
qbirthday(coincident = 3, prob = 0.9)
## Chance of 4 or more coincident birthdays in 150 people
pbirthday(150, coincident = 4)
## 100 or more coincident birthdays in 1000 people: very rare
pbirthday(1000, coincident = 100)
參考
Diaconis, P. and Mosteller F. (1989). Methods for studying coincidences. Journal of the American Statistical Association, 84, 853-861. doi:10.1080/01621459.1989.10478847.
相關用法
- R biplot 多元數據的雙標圖
- R binom.test 精確二項式檢驗
- R biplot.princomp 主成分雙標圖
- R bartlett.test 方差齊性的 Bartlett 檢驗
- R bandwidth 用於核密度估計的帶寬選擇器
- R stlmethods STL 對象的方法
- R medpolish 矩陣的中值波蘭(穩健雙向分解)
- R naprint 調整缺失值
- R summary.nls 總結非線性最小二乘模型擬合
- R summary.manova 多元方差分析的匯總方法
- R formula 模型公式
- R nls.control 控製 nls 中的迭代
- R aggregate 計算數據子集的匯總統計
- R deriv 簡單表達式的符號和算法導數
- R kruskal.test Kruskal-Wallis 秩和檢驗
- R quade.test 四方測試
- R decompose 移動平均線的經典季節性分解
- R plot.stepfun 繪製階躍函數
- R alias 查找模型中的別名(依賴項)
- R qqnorm 分位數-分位數圖
- R eff.aovlist 多層方差分析的計算效率
- R pairwise.t.test 成對 t 檢驗
- R loglin 擬合對數線性模型
- R predict.smooth.spline 通過平滑樣條擬合進行預測
- R influence.measures 回歸刪除診斷
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Probability of coincidences。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。