Learn R Programming

LearningRlab (version 2.2)

binomial_: Binomial Distribution Calculus Function

Description

This function calculates the binomial distribution of experiment.

Usage

binomial_(n,x,p)

Arguments

x

Should be a numbers.

n

Should be a numbers.

p

Should be a numbers.

Value

Numeric, the binomial distribution of three variables.

Details

To calculate the binomial distribution, the user should give three number (the number of trials, probability of success and binomial random variable). The result is a discrete probability distribution that counts the number of successes in a sequence of n independent Bernoulli trials with a fixed probability p of occurrence of success between trials. The binomial distribution formule is the following:

Examples

Run this code
# NOT RUN {
    #data creation
    n = 3
    x = 2
    p = 0.7
    binomial_(n,x,p)
  
# }

Run the code above in your browser using DataLab