p值 t值 统计_非统计师的P值

p值 t值 统计

Here is a summary of how I was taught to assess the p-value in hopes of helping some other non-statistician out there.

这是关于如何教会我评估p值的摘要,希望可以帮助其他一些非统计学家。

P-value in Context

上下文中的P值

Let’s start with the context. When does the p-value even come into play? It is important to make decisions that are backed by data. In Data Science, this is called Data-Driven Decision Making (DDDM). Data is collected, hypotheses are formed about what that data means, the data is then run through a series of statistical calculations also known as hypothesis testing, and in the end, you have calculated values that help guide you in assessing the validity of your hypotheses. One of these calculated values is the p-value or probability value.

让我们从上下文开始。 p值何时生效? 做出由数据支持的决策很重要。 在数据科学中,这称为数据驱动决策(DDDM)。 收集数据,形成关于数据含义的假设,然后通过一系列统计计算(也称为假设检验)运行数据,最后,您获得的计算值可帮助您评估假设的有效性。 这些计算值之一是p值或概率值。

Hypothesis Testing

假设检验

Assume you have data on animal sightings in city streets. These sightings include foxes, coyotes, mice, cats, dogs, and even elephants! What is the probability of seeing an elephant walking down the street? As any good scientist does, you develop a hypothesis and test it. This is called hypothesis testing. In hypothesis testing, you have two opposing hypotheses. First is the null hypothesis, which effectively states there’s no evidence of anything significant in the data here, in this case, elephant sightings are not rare. Alternately, you have a hypothesis that essentially states the purpose of the study or what you are testing for in your calculations. Put simply, the alternative hypothesis states there is evidence of a significant event occurring and you should reject the null hypothesis, in this case, sighting an elephant is rare and therefore is a significant event. Significant can be hard to define. Statisticians call it the alpha value. It is typical to use a significance level, or alpha, of 0.05 as the threshold of significance, meaning that if calculations on your data yield a p-value of less than 0.05, the results are considered statistically significant.

假设您有关于在城市街道上发现动物的数据。 这些目击者包括狐狸,土狼,小鼠,猫,狗,甚至大象! 看到大象走在街上的概率是多少? 就像任何优秀的科学家所做的一样,您会提出一个假设并进行检验。 这称为假设检验。 在假设检验中,您有两个相反的假设。 首先是零假设,它有效地表明这里的数据中没有任何重要的证据,在这种情况下,发现大象的情况并不罕见 。 或者,您有一个假设,该假设基本上说明了研究的目的或您要在计算中测试的内容。 简而言之,替代假设指出有证据表明发生了重大事件,因此您应该拒绝原假设,在这种情况下,很少见到大象,因此是重大事件。 重要程度可能很难定义。 统计人员称其为alpha值。 通常使用0.05的显着性水平或alpha作为显着性阈值,这意味着,如果对数据进行的计算得出的p值小于0.05,则认为结果具有统计学意义。

How do you Interpret the P-value

您如何解释P值

You’ve cleaned your data, developed your hypothesis, put the data into the black box of data science magic, and now you have a p-value. What do you do with it? The p-value is a measurement of the probability of obtaining the results in the data assuming that the null hypothesis is true. How likely is it that you see something as extreme as an elephant walking down a city street? A low p-value, less than the 0.05 significance threshold, indicates that it is not very likely and thus the occurrence of such an event is significant. A high p-value, such as a p-value of 1 indicates the event is commonplace and not an unusual occurrence. Perhaps you would get this value if your sample population were comprised of members of a circus.

您已经清理了数据,提出了假设,并将数据放入了数据科学魔术的黑匣子中,现在您有了一个p值。 你用它做什么? p值是在假设零假设为真的情况下获得数据结果概率的度量。 您看到象大象在城市街道上行走一样极端的可能性有多大? 低的p值(小于0.05的显着性阈值)表明它不太可能发生,因此此类事件的发生非常重要。 较高的p值(例如p值为1)表示该事件很普遍,而不是异常情况。 如果您的样本总体由马戏团成员组成,则可能会得到此值。

Quite simply, the lower the p-value the more significance it holds. If the p-value of seeing an elephant walking down a city street is 0.01 and you do in fact see an elephant, it is a significant event! It means it is rare to get this value and unlikely to be happen-chance that it occurred.

很简单,p值越低,它的重要性就越大。 如果看到大象在城市街道上行走的p值是0.01,而您实际上看到的是大象,那将是一件很重要的事情! 这意味着很难获得此值,并且不太可能发生它。

翻译自: https://medium.com/swlh/p-value-for-the-non-statistician-5484f95fd9c0

p值 t值 统计

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/387972.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

获取对象属性(key)

for…in方法Object.keysObject.getOwnPropertyNames关于对象的可枚举性(enumerable) var obj {a: 1,b: 2 } Object.defineProperty(obj, c, {value: 3,enumerable: false }) 复制代码enumerable设置为false,表示不可枚举,for…in…

github免费空间玩法

GitHub 是一个用于使用Git版本控制系统的项目的基于互联网的存取服务,GitHub于2008年2月运行。在2010年6月,GitHub宣布它现在已经提供可1百万项目,可以说非常强大。 Github虽然是一个代码仓库,但是Github还免费为大家提供一个免费开源Github …

用php生成HTML文件的类

目的 用PHP生成HTML文档, 支持标签嵌套缩进, 支持标签自定义属性 起因 这个东西确实也是心血来潮写的, 本来打算是输出HTML片段用的, 但后来就干脆写成了一个可以输出完整HTML的功能; 我很满意里边的实现缩进的机制, 大家有用到的可以看看p.s. 现在都是真正的前后端分离了(vue,…

在Markdown中输入数学公式

写在前面 最近想要把一些数学和编程方面的笔记记录成电子笔记,因为修改、插入新内容等比较方便。这里记一下在Markdown中输入数学公式的方法。 基础知识 公式与文本的区别 公式输入和文本输入属于不同的模式,公式中无法通过空格来控制空白,通…

如何不部署Keras / TensorFlow模型

While the most articles about deep learning are focusing at the modeling part, there are also few about how to deploy such models to production. Some of them say “production”, but they often simply use the un-optimized model and embed it into a Flask web…

[BZOJ3626] [LNOI2014] LCA 离线 树链剖分

题面 考虑到询问的\(l..r,z\)具有可减性,考虑把询问差分掉,拆成\(r,z\)和\(l-1,z\)。 显然这些LCA一定在\(z\)到根的路径上。下面的问题就是怎么统计。 考虑不是那么暴力的暴力。 我们似乎可以把\(1..r\)的所有点先瞎搞一下,求出一个点内部有…

Linux查看系统各类信息

说明:Linux下可以在/proc/cpuinfo中看到每个cpu的详细信息。但是对于双核的cpu,在cpuinfo中会看到两个cpu。常常会让人误以为是两个单核的cpu。其实应该通过Physical Processor ID来区分单核和双核。而Physical Processor ID可以从cpuinfo或者dmesg中找到…

biopython中文指南_Biopython新手指南-第1部分

biopython中文指南When you hear the word Biopython what is the first thing that came to your mind? A python library to handle biological data…? You are correct! Biopython provides a set of tools to perform bioinformatics computations on biological data s…

整合后台服务和驱动代码注入

整合后台服务和驱动代码注入 Home键的驱动代码: /dev/input/event1: 0001 0066 00000001 /dev/input/event1: 0000 0000 00000000 /dev/input/event1: 0001 0066 00000000 /dev/input/event1: 0000 0000 00000000 对应输入的驱动代码: sendevent/dev/…

Java作业09-异常

6. 为如下代码加上异常处理 byte[] content null; FileInputStream fis new FileInputStream("testfis.txt"); int bytesAvailabe fis.available();//获得该文件可用的字节数 if(bytesAvailabe>0){content new byte[bytesAvailabe];//创建可容纳文件大小的数组…

为数据计算提供强力引擎,阿里云文件存储HDFS v1.0公测发布

2019独角兽企业重金招聘Python工程师标准>>> 在2019年3月的北京云栖峰会上,阿里云正式推出全球首个云原生HDFS存储服务—文件存储HDFS,为数据分析业务在云上提供可线性扩展的吞吐能力和免运维的快速弹性伸缩能力,降低用户TCO。阿里…

对食材的敬畏之心极致产品_这些数据科学产品组合将给您带来敬畏和启发(2020年中的版本)

对食材的敬畏之心极致产品重点 (Top highlight)为什么选择投资组合? (Why portfolios?) Data science is a tough field. It combines in equal parts mathematics and statistics, computer science, and black magic. As of mid-2020, it is also a booming fiel…

android模拟用户输入

目录(?)[-] geteventsendeventinput keyevent 本文讲的是通过使用代码,可以控制手机的屏幕和物理按键,也就是说不只是在某一个APP里去操作,而是整个手机系统。 getevent/sendevent getevent&sendevent 是Android系统下的一个工具&#x…

真格量化常见报错信息和Debug方法

1.打印日志 1.1 在代码中添加运行到特定部分的提示: 如果我们在用户日志未能看到“调用到OnQuote事件”文字,说明其之前的代码就出了问题,导致程序无法运行到OnQuote函数里的提示部分。解决方案为仔细检查该部分之前的代码是否出现问题。 1.2…

向量积判断优劣弧_判断经验论文优劣的10条诫命

向量积判断优劣弧There are a host of pathologies associated with the current peer review system that has been the subject of much discussion. One of the most substantive issues is that results reported in leading journals are commonly papers with the most e…

自定义PopView

改代码是参考一个Demo直接改的&#xff0c;代码中有一些漏洞&#xff0c;如果发现其他的问题&#xff0c;可以下方直接留言 .h文件 #import <UIKit/UIKit.h> typedef void(^PopoverBlock)(NSInteger index); interface CustomPopView : UIView //property(nonatomic,copy…

线控耳机监听

当耳机的媒体按键被单击后&#xff0c;Android系统会发出一个广播&#xff0c;该广播的携带者一个Action名为MEDIA_BUTTON的Intent。监听该广播便可以获取手机的耳机媒体按键的单击事件。 在Android中有个AudioManager类&#xff0c;该类会维护MEDIA_BUTTON广播的分发&#xf…

当编程语言掌握在企业手中,是生机还是危机?

2019年4月&#xff0c;Java的收费时代来临了&#xff01; Java是由Sun微系统公司在1995年推出的编程语言&#xff0c;2010年Oracle收购了Sun之后&#xff0c;Java的所有者也就自然变成了Oracle。2019年&#xff0c;Oracle宣布将停止Java 8更新的免费支持&#xff0c;未来Java的…

sql如何处理null值_如何正确处理SQL中的NULL值

sql如何处理null值前言 (Preface) A friend who has recently started learning SQL asked me about NULL values and how to deal with them. If you are new to SQL, this guide should give you insights into a topic that can be confusing to beginners.最近开始学习SQL的…

名言警句分享

“当你想做一件事&#xff0c;却无能为力的时候&#xff0c;是最痛苦的。”基拉大和转载于:https://www.cnblogs.com/yuxijun/p/9986489.html