statistics

Binomial Distribution with Python Code Examples

In this code, you will learn code examples, written with Python Numpy package, related to the binomial distribution. You may want to check out the post, Binomial Distribution explained with 10+ examples to get an understanding of Binomial distribution with the help of several examples. All of the examples could be tried with code samples given in this post. Here are the instructions:

Load the Numpy package: First and foremost, load the Numpy and Seaborn library

import numpy as np
import seaborn as sns

Code Syntax – np.random.binomial(n, p, size=1): The code np.random.binomial(n, p, size=1) will be used to print the number of successes that will happen in one (size=1) experiment comprising of n number of trials with probability/proportion of success being p.

Tossing a Coin Example: This is an example representing 20 experiments of tossing a coin 50 times and measuring the number of successes (heads) in each of the experiments. The binomial random variable, X, in the experiment is number of successes (heads) in tossing the coins. Note that the probability that a coin appears as heads is 0.5.

np.random.binomial(50, 0.5, size=20)

The above results in an array representing a number of successes in each of the 20 experiments. Note some of the following parameters of the probability distribution:

  • Mean value is 50*0.5 = 25
  • Variance = 50*0.5*(1-0.5) = 12.5
  • Standard deviation is Square root (12.5) = 3.53

Here is the output of the 20 experiments:

array([25, 30, 19, 24, 30, 21, 24, 33, 26, 27, 28, 27, 28, 30, 22, 26, 27,
31, 28, 23])

Here is the plot representing the outcome of the binomial experiments:

Binomial distribution plot representing the outcome of 20 experiments – Tossing a coin

References

Latest posts by Ajitesh Kumar (see all)
Ajitesh Kumar

I have been recently working in the area of Data analytics including Data Science and Machine Learning / Deep Learning. I am also passionate about different technologies including programming languages such as Java/JEE, Javascript, Python, R, Julia, etc, and technologies such as Blockchain, mobile computing, cloud-native technologies, application security, cloud computing platforms, big data, etc. I would love to connect with you on Linkedin. Check out my latest book titled as First Principles Thinking: Building winning products using first principles thinking.

Recent Posts

What are AI Agents? How do they work?

Artificial Intelligence (AI) agents have started becoming an integral part of our lives. Imagine asking…

2 weeks ago

Agentic AI Design Patterns Examples

In the ever-evolving landscape of agentic AI workflows and applications, understanding and leveraging design patterns…

2 weeks ago

List of Agentic AI Resources, Papers, Courses

In this blog, I aim to provide a comprehensive list of valuable resources for learning…

2 weeks ago

Understanding FAR, FRR, and EER in Auth Systems

Have you ever wondered how systems determine whether to grant or deny access, and how…

3 weeks ago

Top 10 Gartner Technology Trends for 2025

What revolutionary technologies and industries will define the future of business in 2025? As we…

3 weeks ago

OpenAI GPT Models in 2024: What’s in it for Data Scientists

For data scientists and machine learning researchers, 2024 has been a landmark year in AI…

3 weeks ago