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

这一节介绍了一个confounding的概念, 在观测数据中, confounder往往是让人头疼的存在.

backdoor path: 指的是intervention\(A\)和outcome\(Y\)间的一条路径(没有方向要求), 其中存在一个箭头指向\(A\), 但是没有从\(A\)出发的箭头.

注: 存疑

7.1 The structure of confounding

如上图所示, 倘若没有\(L\)的存在, 计算causal effect, 可以直接通过

\[\mathrm{Pr} [Y|A=1] - \mathrm{Pr} [Y|A=0],
\]

来计算, 但是\(L\)的存在导致可交换性不成立, 当然在这个情况下, 我们可以通过standardization, 或者 IP weighting来计算(因为条件可交换性是存在的).

\(L\)是intervention \(A\) 和 预测 \(Y\)的共同的一个cause, 是干扰我们判断的存在, 所以称之为confounder, 这种由\(L\)带来额外的association的现象称之为confounding.

Confounding and exchangeability

这里引入了backdoor criterion的概念, 就是用于判断可交换性是否成立的一个准则.

Confounding and the backdoor criterion

一个非常特殊的情况是, 上图中的\(A \amalg Y\), 但是 \(A \not{\amalg} Y | L\).

再看上图, 在这种情况下, 无论是否在给定\(L\)的条件下, \(A\)和\(Y\)都是不独立的, 除非给定\(U_1, U_2\).

7.4 Confounding and confounders

7.5 Single-world intervention graphs

介绍了一个更为细致的表示方式: SWIG.

Confounding adjustment

Fine Point

The strength and direction of confounding bias

Identification of conditional and unconditional effects

Surrogate confounders

Confounders cannot be descendants, but can be in the future of treatment

Technical Point

Does conditional exchangeability imply the backdoor criterion?

Fixing the traditional definition of confounder

Difference-in-differences and negative outcome controls

The front door criterion

\[\mathrm{Pr}[Y^a=1] =
\sum_m
\mathrm{Pr} [M=m|A=a]
\sum_{a'}
\mathrm{Pr} [Y=1|M=m,A=a']
\mathrm{Pr} [A=a'].
\]

Chapter 7 Confounding的更多相关文章

  1. Modern C++ CHAPTER 2(读书笔记)

    CHAPTER 2 Recipe 2-1. Initializing Variables Recipe 2-2. Initializing Objects with Initializer Lists ...

  2. Android Programming: Pushing the Limits -- Chapter 7:Android IPC -- ApiWrapper

    前面两片文章讲解了通过AIDL和Messenger两种方式实现Android IPC.而本文所讲的并不是第三种IPC方式,而是对前面两种方式进行封装,这样我们就不用直接把Aidl文件,java文件拷贝 ...

  3. Android Programming: Pushing the Limits -- Chapter 7:Android IPC -- Messenger

    Messenger类实际是对Aidl方式的一层封装.本文只是对如何在Service中使用Messenger类实现与客户端的通信进行讲解,对Messenger的底层不做说明.阅读Android Prog ...

  4. [转]第四章 使用OpenCV探测来至运动的结构——Chapter 4:Exploring Structure from Motion Using OpenCV

    仅供参考,还未运行程序,理解部分有误,请参考英文原版. 绿色部分非文章内容,是个人理解. 转载请注明:http://blog.csdn.net/raby_gyl/article/details/174 ...

  5. 《深入理解计算机系统》 Chapter 7 读书笔记

    <深入理解计算机系统>Chapter 7 读书笔记 链接是将各种代码和数据部分收集起来并组合成为一个单一文件的过程,这个文件可被加载(货被拷贝)到存储器并执行. 链接的时机 编译时,也就是 ...

  6. 《Linux内核设计与实现》Chapter 3 读书笔记

    <Linux内核设计与实现>Chapter 3 读书笔记 进程管理是所有操作系统的心脏所在. 一.进程 1.进程就是处于执行期的程序以及它所包含的资源的总称. 2.线程是在进程中活动的对象 ...

  7. PRML Chapter 2. Probability Distributions

    PRML Chapter 2. Probability Distributions P68 conjugate priors In Bayesian probability theory, if th ...

  8. PRML Chapter 1. Introduction

    PRML Chapter 1. Introduction 为了防止忘记,要把每章的重要内容都记下来,从第一章开始 2012@3@28 今天又回去稍微翻了一下第一章内容,发现第一次看的时候没有看透,每次 ...

  9. MathType 插入定义的chapter and section break后无法隐藏

    每一章标题后面插入一个“Next Section Break”,这样定稿后各章文件组合为总文件后,方程编号会自动递增,如果已经插入了默认的“Equation Chapter 1 Section 1”, ...

随机推荐

  1. 日常Java 2021/10/26

    HashSet基于HashMap来实现的,是一个不允许有重复元素的集合.HashSet 允许有null 值. HashSet是无序的,即不会记录插入的顺序. HashSet不是线程安全的,如果多个线程 ...

  2. Java、Scala获取Class实例

    Java获取Class实例的四种方式 package com.test; /** * @description: TODO * @author: HaoWu * @create: 2020/7/22 ...

  3. Docker学习(一)——安装docker

    Suse12上安装docker   对于suse13.2之后的版本,因为docker已经被添加到了suse仓库中,直接使用sudo zypper install docker即可.   suse12不 ...

  4. Spring的事务传播机制(通俗易懂)

    概述 Spring的事务传播机制有7种,在枚举Propagation中有定义. 1.REQUIRED PROPAGATION_REQUIRED:如果当前没有事务,就创建一个新事务,如果当前存在事务,就 ...

  5. Template Metaprogramming in C++

    说实话,学习C++以来,第一次听说"Metaprogramming"这个名词. Predict the output of following C++ program. 1 #in ...

  6. 监测linux系统负载与CPU、内存、硬盘、用户数的shell脚本

    本节主要内容: 利用Shell脚本来监控Linux系统的负载.CPU.内存.硬盘.用户登录数. 一.linux系统告警邮件脚本 # vim /scripts/sys-warning.sh #!/bin ...

  7. 【编程思想】【设计模式】【结构模式Structural】3-tier

    Pyhon版 https://github.com/faif/python-patterns/blob/master/structural/3-tier.py #!/usr/bin/env pytho ...

  8. 【C/C++】旋转数组的最小数字/ 剑指offer

    #include <bits/stdc++.h> using namespace std; class Solution { public: int minNumberInRotateAr ...

  9. ASP.NET管道模型简析

    我相信在第一次听到这个名词时,有的小伙伴会一脸懵,而且还有很多疑问,其实我在第一次接触这个概念时跟很多小伙伴一样一脸懵. 接下来我将以我自己的理解来讲述什么是管道模型. 什么是管道模型 首先有没有小伙 ...

  10. netty系列之:性能为王!创建多路复用http2服务器

    目录 简介 多路复用的基础 多路复用在server端的使用 配置TLS处理器 配置clear text upgrade 总结 简介 在之前的文章中,我们提到了在netty的客户端通过使用Http2Fr ...