Skip to content
Prev 323258 / 398506 Next

Can you help me sir,

Well, in general, you can use the following functions:
http://stat.ethz.ch/R-manual/R-patched/library/stats/html/Binomial.html

See the examples at section "Examples".
You may want to try the following:
n<-10
k <- seq(0, n, by = 1)
plot (k,dbinom(k,n,0.5,log =FALSE),type="l")
plot(k,pbinom(k,n,0.5,log=FALSE),type="l")

Was this your question?

2013/5/9 ??? <wjddls2464 at naver.com>: