How to calculate probabilities for Exponential distributions in R
We provide effective and economically affordable online training courses for R and Python, click here for more details and course registration ! Exponential distribution is a continuous distribution that models random time between events (until next event occurs) during a Poisson process, which is a process with constant occurrence rate Read more…
How to calculate normal distributions in R
We provide effective and economically affordable online training courses for R and Python, click here for more details and course registration ! Normal distribution is a continuous random variable distribution with bell-shaped probability density curve. It is widely used in statistical data analysis, and the basis for many other distributions Read more…
How to calculate Continuous Uniform distribution probabilities in R
We provide effective and economically affordable online training courses for R and Python, click here for more details and course registration ! Continuous Uniform distribution is used to model a flat probability existence with a range (A,B). Its probability density can be depicted as The follow figure shows probability density Read more…
How to calculate Poisson distribution probabilities in R
We provide effective and economically affordable online training courses for R and Python, click here for more details and course registration ! Poisson distribution is used to model the random number (x) of event occurrence during a Poisson process, which focus on the occurrence of same random events during a Read more…
How to calculate Geometric distribution probabilities in R
We provide effective and economically affordable online training courses for R and Python, click here for more details and course registration ! Geometric distribution is to model the random trial number X until a first success, in Bernoulli trial experiments, with constant success rate p. The probability of x can Read more…
How to calculate probability from Negative Binomial distribution in R
We provide effective and economically affordable online training courses for R and Python, click here for more details and course registration ! Negative binomial distribution is used to model the particular probability of k-th success occurring at x-th Bernoulli trial, which is equivalent to say that it has experienced x-1 Read more…
How to calculate probability of Hypergeometric distribution in R
We provide effective and economically affordable online training courses for R and Python, click here for more details and course registration ! Hypergeometric distribution is connected with taking n items (no replacement) from N items, where k items labeled success and N-k items failure. The success number x of n Read more…
How to calculate binomial distribution in R
We provide effective and economically affordable online training courses for R and Python, click here for more details and course registration ! Binomial distribution is a discrete random distribution modeling the probability of event success number x in N Bernoulli trial. A Bernoulli trial is an experiment of binary (success/fail) Read more…
How to use arrange() function in R to sort dataset
We provide effective and economically affordable online training courses for R and Python, click here for more details and course registration ! arrange() function from Dplyr package in R provides an alternative way as sort() function in R base installation for sorting a data frame with respect to variables, either Read more…