Hern\(\'{a}\)n M. and Robins J. Causal Inference: What If.

A: intervention, exposure, treatment

consistency: \(Y=Y^A\) when A observed.

1.1 Individual casual effects

假设我们要探究变量A与变量Y的关系, 在设定\(A=a\)的情况下, Y一致对应有\(Y^{a}\).

倘若A是二元的, 即\(\{0, 1\}\), 则有相应的\(Y^0, Y^1\).

则对于某个个体来讲, A对于Y有casual effect, 若\(Y^0 \not = Y^1\).

举个例子来讲, 给宙斯后面来一棍子(A=1), 宙斯是否会晕\(Y^1=0\) or \(Y^1 =1\), 或者啥也不做也就是\(A=0\), 宙斯的状态\(Y^0\).

当\(Y^1 \not = Y^0\) 的时候, 我们可以判断, 是否给宙斯来一棍对于宙斯下一刻会不会晕有casual effect, 反之就是没有.

1.2 Average casual effects

刚刚是针对个体的causal effect 的定义, 接下来是average casual effect的概念.

实际上, 就是针对一族个体的集合, 探究操作A对于所关心的Y的是否存在影响.

实际上, 就是判断

\[\mathbb{E} [Y^a],
\]

的关系, 对于上面的二元的例子, 就是判断

\[\mathbb{E} [Y^0] == \mathbb{E}[Y^1],
\]

更进一步的, 由于\(Y\)本身也是二元的\(\{0, 1 \}\), 所以可以进一步简化为

\[\mathrm{Pr}[Y^0=1] == \mathrm{Pr}[Y^1 = 1].
\]

1.5 Causation versus association

我们可以知道, \(Y=Y^a, \: if \: A=a\), 更精准的

\[\mathrm{Pr}(Y|A=a) = \mathrm{Pr}(Y^a|A=a),
\]

这是因果推断里很重要的一致性(consistency)的概念, 或许把它作为一个假设更为合理.

要知道, 我们在实际计算causal effects 的时候用到的是边际概率分布\(\mathrm{Pr}(Y^a)\).

观察可知, 当\(A, Y^a\)相互独立的时候, 我们可以得到

\[\mathrm{Pr}(Y^a) = \mathrm{Pr}(Y^a| A=a),
\]

此时causation 和 association 便是一致的了.

association 可以理解为

\[\mathbb{E}[Y|A] = \mathbb{E}[Y^A|A],
\]

与causation非常类似.

想要区分二者的区别, 还是得看原文, 从例子的角度出发, 否者还是难以掌握.

一言以蔽之, association, 即条件概率, 实际上分析的是某一个特定人群执行某些操作的结果, 而causation则是希望在一个更大的范围内, 一视同仁的判断概操作对这些人的影响, 忽略这特定人群的某些特定性质的影响.

Chapter 1 A Definition of Causal Effect的更多相关文章

  1. Chapter 6 Graphical Representation of Causal Effects

    目录 6.1 Causal diagrams 6.2 Causal diagrams and marginal independence 6.3 Causal diagrams and conditi ...

  2. Chapter 4 Effect Modification

    目录 4.1 Definition of effect modification 4.2 Stratification to identify effect modification 4.3 Why ...

  3. Targeted Learning R Packages for Causal Inference and Machine Learning(转)

    Targeted learning methods build machine-learning-based estimators of parameters defined as features ...

  4. Chapter 7 Confounding

    目录 7.1 The structure of confounding Confounding and exchangeability Confounding and the backdoor cri ...

  5. Chapter 2 Randomized Experiments

    目录 概 2.1 Randomization 2.2 Conditional randomization 2.3 Standardization 2.4 Inverse probability wei ...

  6. 【统计】Causal Inference

    [统计]Causal Inference 原文传送门 http://www.stat.cmu.edu/~larry/=sml/Causation.pdf 过程 一.Prediction 和 causa ...

  7. Causal Inference

    目录 Standardization 非参数情况 Censoring 参数模型 Time-varying 静态 IP weighting 无参数 Censoring 参数模型 censoring 条件 ...

  8. Chapter 22 Target Trial Emulation

    目录 22.1 The target trial 22.2 Causal effects in randomized trails 22.3 Causal effects in observation ...

  9. Chapter 21 G-Methods for Time-Varying Treatments

    目录 21.1 The g-formula for time-varying treatments 21.2 IP weighting for time-varying treatments 21.3 ...

随机推荐

  1. 关于java中的安全管理器

    最近再查看java的源码的时候看见了这一类代码 final SecurityManager sm = System.getSecurityManager(); 想要了解这个是为了做什么,查看资料之后发 ...

  2. c++ cmake及包管理工具conan简单入门

    cmake是一个跨平台的c/c++工程管理工具,可以通过cmake轻松管理我们的项目 conan是一个包管理工具,能够自动帮助我们下载及管理依赖,可以配合cmake使用 这是一个入门教程,想深入了解的 ...

  3. java网站架构设计

    涉及到的技术及工具:java,springmvc,ibatis,freemarker,mysql,mongdb,memcached,ehcache,maven. 一个网站不可能说一开始就是要设计一个能 ...

  4. Advanced C++ | Conversion Operators

    In C++, the programmer abstracts real world objects using classes as concrete types. Sometimes it is ...

  5. 【编程思想】【设计模式】【行为模式Behavioral】chaining_method

    Python版 https://github.com/faif/python-patterns/blob/master/behavioral/chaining_method.py #!/usr/bin ...

  6. js调用高德地图API获取地理信息进行定位

    <script type="text/javascript" src="http://webapi.amap.com/maps?v=1.3&key=(需要自 ...

  7. SQL Server中修改“用户自定义表类型”问题的分析与方法

    前言 SQL Server开发过程中,为了传入数据集类型的变量(比如接受C#中的DataTable类型变量),需要定义"用户自定义表类型",通过"用户自定义表类型&quo ...

  8. 『学了就忘』Linux启动引导与修复 — 72、Linux系统的修复模式(单用户模式)

    目录 1.单用户模式常见的错误修复 2.通过单用户模式修改系统密码 (1)进入grub启动引导程序中 (2)编辑相应的系统启动内容 (3)编辑grub配置文件内容 (4)启动系统 (5)修改root用 ...

  9. <转>Hadoop入门总结

    转自:http://www.cnblogs.com/skyme/archive/2012/06/01/2529855.html 第1章 引言 1.1 编写目的 对关于hadoop的文档及资料进行进一步 ...

  10. Vlookup大叔早已油腻(Excel函数集团)

    1.Vlookup基础用法:https://mp.weixin.qq.com/s/0JRytWlBD-KYM2jkecG2rA 2.合并字符串:https://mp.weixin.qq.com/s/9 ...