Statistics : Data Distribution

1、Normal distribution

In probability theory, the normal (or Gaussian or Gauss or Laplace–Gauss) distribution is a very common continuous probability distribution. Normal distributions are important in statistics and are often used in the natural and social sciences to represent real-valued random variables whose distributions are not known. A random variable with a Gaussian distribution is said to be normally distributed and is called a normal deviate.
The normal distribution is
useful because of the central limit theorem. In its most general form, under
some conditions (which include finite variance), it states that averages of
samples of observations of random variables independently drawn from
independent distributions converge in distribution to the normal, that is, they
become normally distributed when the number of observations is sufficiently
large. Physical quantities that are expected to be the sum of many independent
processes (such as measurement errors) often have distributions that are nearly
normal. Moreover, many results and methods (such as propagation of uncertainty
and least squares parameter fitting) can be derived analytically in explicit
form when the relevant variables are normally distributed.
The normal distribution is
sometimes informally called the bell curve. However, many other distributions
are bell-shaped (such as the Cauchy, Student‘s t-, and logistic distributions).

link:https://en.wikipedia.org/wiki/Normal_distribution

https://www.mathsisfun.com/data/standard-normal-distribution.html

2、Poisson Distribution

In
probability theory and statistics, the Poisson distribution (French
pronunciation: ?; in English often rendered /?pwɑ?s?n/), named after French
mathematician Siméon Denis Poisson, is a discrete probability distribution that
expresses the probability of a given number of events occurring in a fixed
interval of time or space if these events occur with a known constant rate and
independently of the time since the last event. The Poisson distribution can
also be used for the number of events in other specified intervals such as
distance, area or volume.
For instance, an
individual keeping track of the amount of mail they receive each day may notice
that they receive an average number of 4 letters per day. If receiving any
particular piece of mail does not affect the arrival times of future pieces of
mail, i.e., if pieces of mail from a wide range of sources arrive independently
of one another, then a reasonable assumption is that the number of pieces of
mail received in a day obeys a Poisson distribution. Other examples that may
follow a Poisson distribution include the number of phone calls received by a
call center per hour and the number of decay events per second from a
radioactive source.

link:https://en.wikipedia.org/wiki/Poisson_distribution

https://www.umass.edu/wsp/resources/poisson/

3、Chi-squared distribution

In
probability theory and statistics, the chi-square distribution (also
chi-squared or χ2-distribution) with k degrees of freedom is the distribution
of a sum of the squares of k independent standard normal random variables. The
chi-square distribution is a special case of the gamma distribution and is one
of the most widely used probability distributions in inferential statistics,
notably in hypothesis testing or in construction of confidence intervals. When
it is being distinguished from the more general noncentral chi-square distribution,
this distribution is sometimes called the central chi-square distribution.
The chi-square
distribution is used in the common chi-square tests for goodness of fit of an
observed distribution to a theoretical one, the independence of two criteria of
classification of qualitative data, and in confidence interval estimation for a
population standard deviation of a normal distribution from a sample standard
deviation. Many other statistical tests also use this distribution, such as
Friedman‘s analysis of variance by ranks.

link:https://en.wikipedia.org/wiki/Chi-squared_distribution

http://mathworld.wolfram.com/Chi-SquaredDistribution.html

https://www.itl.nist.gov/div898/handbook/eda/section3/eda3666.html

4、Beta distribution

In
probability theory and statistics, the beta distribution is a family of
continuous probability distributions defined on the interval  parametrized by two positive shape parameters,
denoted by α and β, that appear as exponents of the random variable and control
the shape of the distribution. It is a special case of the Dirichlet
distribution.
The beta distribution has
been applied to model the behavior of random variables limited to intervals of
finite length in a wide variety of disciplines.
In Bayesian inference, the
beta distribution is the conjugate prior probability distribution for the
Bernoulli, binomial, negative binomial and geometric distributions. For
example, the beta distribution can be used in Bayesian analysis to describe
initial knowledge concerning probability of success such as the probability
that a space vehicle will successfully complete a specified mission. The beta
distribution is a suitable model for the random behavior of percentages and proportions.
The usual formulation of
the beta distribution is also known as the beta distribution of the first kind,
whereas beta distribution of the second kind is an alternative name for the
beta prime distribution.

link:https://en.wikipedia.org/wiki/Beta_distribution

原文地址:https://www.cnblogs.com/zgq25302111/p/11296283.html

时间: 2024-08-25 06:09:35

Statistics : Data Distribution的相关文章

ACCT648 Applied Statistics for Data Analysis

Term 1, 2019/2020ACCT648 Applied Statistics for Data AnalysisAssignment 3Deadline of Submission: Upload your answer file in word-format on 6 November2019 before 5pm in e-Learn, and submit the hard copy during class on that day1. The owner of a moving

mysql执行update语句时报错:Data truncation: Truncated incorrect DOUBLE value: 'null'

出现这个问题的原因网上有说是update的参数连接符要用,而不是and,但是我遇到的不是这个. 我出现问题的原因是,在update语句的where中varchar类型的字段我直接用了数字类型 update address set province = '北京' where userId = 250; userId是varchar类型的,报错Data truncation: Truncated incorrect DOUBLE value: 'null' 改成这样就可以了 update addre

Mysql load data infile 导入数据出现:Data truncated for column

[1]Mysql load data infile 导入数据出现:Data truncated for column .... 可能原因: (1)数据库表的字段类型长度不够,或改为其他数据类型(即类型错误)试试. (2)Myysql的my.ini配置文件中有一个max_allowed_packet配置项,默认是4M. 如果没有修改默认的这个配置项而你要导入的文件大于4M的话,可能出现上述类似的数据导入错误. Good Good Study, Day Day Up. 顺序 选择 循环 总结 原文地

[Math Review] Statistics Basic: Sampling Distribution

Inferential Statistics Generalizing from a sample to a population that involves determining how far sample statistics are likely to vary from each other and from the population parameter. Sampling Distribution The sampling distribution of a statistic

JS魔法堂:Data URI Scheme介绍

一.前言 上周五公司内部的Any Topic Conf.上我和同事们分享了这个主题,有同事说这个有用,有同事说这个没啥用,后来还延伸到网站性能的话题上,大家讨论的激烈程度让我觉得这次选题还不错.本篇先不管到底有用与否,仅仅记录理论知识.也希望大家一起来分享实战经验啊! 二.从HTTP URI Scheme入手 对于 <a href="http://github.com">HTTP URI Scheme</a> 我想大家都应该很熟悉了,href属性值http://

WP8.1 Study5:Data binding数据绑定

一.数据绑定 最简单的编程UI控件的方法是写自己的数据来获取和设置控件的属性,e.g. , textBox1.Text = "Hello, world"; 但在复杂的应用程序,这样的代码很快就会变得笨拙,容易出错 因此,为了更加方便,使用XAML数据绑定到你的UI链接到一个在应用程序中包含应用程序的数据的类. 这个类class:是一个对于被称为视图模型的数据绑定(ViewModel)的数据源. UI控件可以从视图模型Viewmodel类的属性自动获取其显示值,而且通过改变Viewmod

jQuery数据缓存方案详解:$.data()的使用

我们经常使用隐藏控件或者是js全局变量来临时存储数据,全局变量容易导致命名污染,隐藏控件导致经常读写dom浪费性能.jQuery提供了自己的数据缓存方案,能够达到和隐藏控件.全局变量相同的效果,但是jQuery实现方式更优雅.为了更好地使用jQuery数据缓存方案,我们需要掌握$.data().$.cache.$.expando.$.hasData().$.removeData(). $.hasData()用来判断某个对象是否有附加的属性,可以给任何JavaScript对象和HTMLElemen

关于提交表单时添加自定义值的方式:data中值可绑定function

表单提交时新增自定义值: $.ajaxForm(){ data:{aaa:"12"} } 但是这个是在初始化的时候就绑定进去的,所以值是固定的初始化时候的值,若想添加动态值,可以这样写: $.ajaxForm(){ data:{aaa:function(){ return "动态值"; }} } 可以实现动态功能,因为ajaxForm插件会判断其类型,若为函数,则在提交时执行该函数. 同理,所有data中绑定的函数在提交时都会被执行出结果再赋给该对象.

python接口自动化测试十一:传参数:data与json

# 传json参数 import requests url = 'xxxxxxxx' body = {     'xxx': 'xxx',     'xxx': 'xxx' } # body是json格式的 r = requests.post(url, json=body) print(r.text) # 第二种方法 import json r = requests.post(url, data=json.dumps(body)) print(r.text)   import requests