R 統計學入門
Maggie Matsui
Content Developer, DataCamp
Poisson 事件間隔時間的機率
範例
也使用 lambda(發生率)
連續(時間)


$P(\text{wait} < \text{1 min})$ =
pexp(1, rate = 0.5)
0.3934693
$P(\text{wait} > \text{4 min})$ =
pexp(4, rate = 0.5, lower.tail = FALSE)
0.1353353
$P(\text{1 min} < \text{wait} < \text{4 min})$ =
pexp(4, rate = 0.5) - pexp(1, rate = 0.5)
0.4711954
用發生率(Poisson)表示:
用時間(指數分配)表示:


其對數服從常態分配的變數
範例:

R 統計學入門