poisson_: Poisson Distribution Calculus Function

View source: R/Statistics.R

poisson_R Documentation

Poisson Distribution Calculus Function

Description

This function calculates the Poisson distribution of experiment.

Usage

poisson_(k,lam)

Arguments

k

Should be a numbers

lam

Should be a numbers

Details

To calculate the Poisson distribution, the user should give two number ( the number of times the phenomenon and the number of occurrences). The result is a discrete probability distribution that expresses, from a mean frequency of occurrence, the probability that a certain number of events will occur during a certain period of time. The Poisson distribution formule is the following:
poisson.jpg

Value

Numeric, the pearson correlation of two numbers.

Note

Each variable is a number. Example: lam <- 2 | k <- 3

Author(s)

Jose Manuel Gomez Caceres, josemanuel.gomezc@edu.uah.es
Juan Jose Cuadrado, jjcg@uah.es
Universidad de Alcala de Henares

Examples


    #data creation
    lam = 2
    k = 3
    poisson_(k,lam)
  

LearningRlab documentation built on Aug. 31, 2023, 1:08 a.m.