Re: [R] Cumulative probability from binomial distribution

2022-06-30 Thread Jeff Newmiller
Sounds uncomfortably close to a statistical or philosophical question. Does a reminder that the "p" in "pbinom" means "cumulative probability" help? q <- seq( -1, 2, 0.001 ) p <- pbinom( q, 1, 0.4 ) plot( q, p, type = "l" ) On June 30, 2022 6:08:42 AM PDT, Christofer Bogaso wrote: >Hi, > >I h

[R] Cumulative probability from binomial distribution

2022-06-30 Thread Christofer Bogaso
Hi, I have the below output. > pbinom(0.10, 1, 0.40) [1] 0.6 I am curious what it means to serve a fraction as the first argument in pbinom()? Thanks for your time __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.eth