I've a random variable X/n, where X is a binomial random variable with p=1/2 and n= 10, 100, 1000. The goal is to plot the cumulative distribution function of X/n.
I'm wondering why the first argument of the command pbinom is x*n.
delta = 1/1000
x = seq(0, 1, by=delta)
plot(x=NULL, y=NULL, xlim=c(0,1), ylim=c(0,1), xlab='x', ylab='CDF')
n = 10
y = pbinom(x*n, n, 1/2)
lines(x, y, type='s', col='red')
n = 100
y = pbinom(x*n, n, 1/2)
lines(x, y, type='s', col='blue')
n = 1000
y = pbinom(x*n, n, 1/2)
lines(x, y, type='s')