R 简明教程
R - Binomial Distribution
二项分布模型用于找出某个事件在某系列实验中仅有两项可能结果的成功概率。例如,抛掷一枚硬币总是会得到正面或反面。估计二项分布期间重复抛掷一枚硬币 10 次中正好得到 3 次正面的概率。
R 有四个生成二项分布的内置函数。其描述如下。
dbinom(x, size, prob)
pbinom(x, size, prob)
qbinom(p, size, prob)
rbinom(n, size, prob)
以下是所用参数的描述 -
-
x 是数字向量。
-
p 是概率向量。
-
n 是观察次数。
-
size 是试验次数。
-
prob 是每次试验成功的概率。
dbinom()
此函数给出了每个点的概率密度分布。
# Create a sample of 50 numbers which are incremented by 1.
x <- seq(0,50,by = 1)
# Create the binomial distribution.
y <- dbinom(x,50,0.5)
# Give the chart file a name.
png(file = "dbinom.png")
# Plot the graph for this sample.
plot(x,y)
# Save the file.
dev.off()
当我们执行上述代码时,会产生以下结果 -
pbinom()
此函数给出了事件的累积概率。它是一个表示概率的单一值。
# Probability of getting 26 or less heads from a 51 tosses of a coin.
x <- pbinom(26,51,0.5)
print(x)
当我们执行上述代码时,会产生以下结果 -
[1] 0.610116