search
HomeBackend DevelopmentPython TutorialDemonstrating the 68-95-99.7 rule in statistics using Python

Demonstrating the 68-95-99.7 rule in statistics using Python

Statistics provides us with powerful tools to analyze and understand data. One of the fundamental concepts in statistics is the 68-95-99.7 rule, also known as the rule of thumb or the three sigma rule. This rule allows us to make important inferences about the distribution of data based on its standard deviation. In this blog post, we will explore the 68-95-99.7 rule and demonstrate how to apply it using Python.

68-95-99.7 Rule Overview

The

68-95-99.7 rule provides a way to estimate the percentage of data in a normal distribution that is within a certain standard deviation from the mean. According to this rule -

  • Approximately 68% of the data falls within one standard deviation of the mean.

  • Approximately 95% of the data falls within two standard deviations of the mean.

  • Approximately 99.7% of the data falls within three standard deviations of the mean.

These percentages are for data sets that follow a normal distribution (also called a bell curve). Understanding this rule allows us to quickly assess the spread of data and identify outliers or unusual observations.

Implementing the 68-95-99.7 rule in Python

To demonstrate the 68-95-99.7 rule in action, we will use Python and its popular data analysis library NumPy. NumPy provides efficient numerical operations and statistical functions to help us calculate necessary values. Let’s first import the required libraries

import numpy as np
import matplotlib.pyplot as plt

Next, we will use the numpy.random.normal() function to generate a random data set that follows a normal distribution. We will use mean 0 and standard deviation 1

np.random.seed(42)  # Set the random seed for reproducibility
data = np.random.normal(0, 1, 10000)

Now, we can calculate the mean and standard deviation of the data set

mean = np.mean(data)
std = np.std(data)

To visualize the data and the area covered by the 68-95-99.7 rule, we can create a histogram using the matplotlib.pyplot.hist() function

plt.hist(data, bins=30, density=True, alpha=0.7)

# Plot the mean and standard deviations
plt.axvline(mean, color='r', linestyle='dashed', linewidth=1, label='Mean')
plt.axvline(mean - std, color='g', linestyle='dashed', linewidth=1, label='1 STD')
plt.axvline(mean + std, color='g', linestyle='dashed', linewidth=1)
plt.axvline(mean - 2*std, color='b', linestyle='dashed', linewidth=1, label='2 STD')
plt.axvline(mean + 2*std, color='b', linestyle='dashed', linewidth=1)
plt.axvline(mean - 3*std, color='m', linestyle='dashed', linewidth=1, label='3 STD')
plt.axvline(mean + 3*std, color='m', linestyle='dashed', linewidth=1)

plt.legend()
plt.xlabel('Value')
plt.ylabel('Density')
plt.title('Histogram of the Dataset')
plt.show()

The resulting histogram will show the distribution of the data with the mean and standard deviation marked with dashed lines.

To calculate the percentage coverage of each range, we can use the cumulative distribution function (CDF) of the normal distribution. The NumPy function numpy.random.normal() generates normally distributed data, but NumPy also provides numpy.random.normal() to calculate CDF

# Calculate the percentage within one standard deviation
pct_within_1_std = np.sum(np.logical_and(data >= mean - std, data 7lt;= mean + std)) / len(data)

# Calculate the percentage within two standard deviations
pct_within_2_std = np.sum(np.logical_and(data >= mean - 2*std, data <= mean + 2*std)) / len(data)

# Calculate the percentage within three standard deviations
pct_within_3_std = np.sum(np.logical_and(data >= mean - 3*std, data <= mean + 3*std)) / len(data)

print("Percentage within one standard deviation: {:.2%}".format(pct_within_1_std))
print("Percentage within two standard deviations: {:.2%}".format(pct_within_2_std))
print("Percentage within three standard deviations: {:.2%}".format(pct_within_3_std))

When you run this code, you will see the percentage of your data that falls within 1, 2, and 3 standard deviations of the mean.

Percentage within one standard deviation: 68.27%
Percentage within two standard deviations: 95.61%
Percentage within three standard deviations: 99.70%

These results are very consistent with the expected percentages for the 68-95-99.7 rule.

68-95-99.7 Explanation of rules

The percentage covered by each range has a specific interpretation. Data that fall within one standard deviation of the mean are relatively common, while data that fall outside three standard deviations of the mean are considered rare. Understanding these explanations helps make meaningful inferences about the data.

68-95-99.7 Rule Limitations

While the 68-95-99.7 rule is a valuable guideline, it may not apply accurately to data sets that deviate significantly from the normal distribution. When working with such data sets, it is crucial to consider other statistical techniques and conduct further analysis.

Outliers and the 68-95-99.7 Rule

Outliers can greatly affect the accuracy of the percentage covered by each range. These extreme values ​​may distort the distribution and affect the effectiveness of the rules. Proper identification and handling of outliers is important to ensure accurate statistical analysis.

Real life examples

68-95-99.7 Rules apply in all areas. For example, it is critical in identifying defective products in quality control processes, in assessing risk and return on investment in financial analysis, in understanding patient characteristics in healthcare research, and in understanding data distributions in many other areas.

As you dig deeper into the statistics, consider exploring other concepts that supplement the 68-95-99.7 rule. Skewness, kurtosis, confidence intervals, hypothesis testing, and regression analysis are just a few examples of statistical tools that can further enhance your understanding and analysis of your data.

in conclusion

68-95-99.7 Rules are a powerful concept in statistics that allow us to understand the distribution of data based on its standard deviation. By applying this rule, we can estimate the proportion of data that falls within a specific range around the mean. In this blog, we use Python and the NumPy library to generate a random dataset, visualize it, and calculate the percentage coverage of each range. Understanding this rule allows us to make meaningful inferences about the data and identify potential outliers or unusual observations.

The above is the detailed content of Demonstrating the 68-95-99.7 rule in statistics using Python. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:tutorialspoint. If there is any infringement, please contact admin@php.cn delete
详细讲解Python之Seaborn(数据可视化)详细讲解Python之Seaborn(数据可视化)Apr 21, 2022 pm 06:08 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

详细了解Python进程池与进程锁详细了解Python进程池与进程锁May 10, 2022 pm 06:11 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

Python自动化实践之筛选简历Python自动化实践之筛选简历Jun 07, 2022 pm 06:59 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

归纳总结Python标准库归纳总结Python标准库May 03, 2022 am 09:00 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于标准库总结的相关问题,下面一起来看一下,希望对大家有帮助。

分享10款高效的VSCode插件,总有一款能够惊艳到你!!分享10款高效的VSCode插件,总有一款能够惊艳到你!!Mar 09, 2021 am 10:15 AM

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

Python数据类型详解之字符串、数字Python数据类型详解之字符串、数字Apr 27, 2022 pm 07:27 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

详细介绍python的numpy模块详细介绍python的numpy模块May 19, 2022 am 11:43 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

python中文是什么意思python中文是什么意思Jun 24, 2019 pm 02:22 PM

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool