Survival Analysis {Chapter 12}

Slides:



Advertisements
Similar presentations
Survival Analysis-1 In Survival Analysis the outcome of interest is time to an event In Survival Analysis the outcome of interest is time to an event The.
Advertisements

JMB Chapter 6 Part 1 v2 EGR 252 Spring 2009 Slide 1 Continuous Probability Distributions Many continuous probability distributions, including: Uniform.
Forecasting Using the Simple Linear Regression Model and Correlation
Hypothesis Testing Steps in Hypothesis Testing:
CHAPTER 21 Inferential Statistical Analysis. Understanding probability The idea of probability is central to inferential statistics. It means the chance.
Slide 1 DSCI 5340: Predictive Modeling and Business Forecasting Spring 2013 – Dr. Nick Evangelopoulos Lecture 7: Box-Jenkins Models – Part II (Ch. 9) Material.
EPI 809/Spring Probability Distribution of Random Error.
Sampling Distributions (§ )
Objectives (BPS chapter 24)
April 25 Exam April 27 (bring calculator with exp) Cox-Regression
1 Statistics 262: Intermediate Biostatistics Kaplan-Meier methods and Parametric Regression methods.
Time series analysis - lecture 5
Chapter 11 Survival Analysis Part 3. 2 Considering Interactions Adapted from "Anderson" leukemia data as presented in Survival Analysis: A Self-Learning.
Chapter 11 Survival Analysis Part 2. 2 Survival Analysis and Regression Combine lots of information Combine lots of information Look at several variables.
1 Inference About a Population Variance Sometimes we are interested in making inference about the variability of processes. Examples: –Investors use variance.
© 2000 Prentice-Hall, Inc. Chap Forecasting Using the Simple Linear Regression Model and Correlation.
Linear statistical models 2009 Count data  Contingency tables and log-linear models  Poisson regression.
Survival Analysis A Brief Introduction Survival Function, Hazard Function In many medical studies, the primary endpoint is time until an event.
1 Kaplan-Meier methods and Parametric Regression methods Kristin Sainani Ph.D. Stanford University Department of Health.
Inference for regression - Simple linear regression
HSRP 734: Advanced Statistical Methods July 10, 2008.
G Lecture 121 Analysis of Time to Event Survival Analysis Language Example of time to high anxiety Discrete survival analysis through logistic regression.
Topics: Statistics & Experimental Design The Human Visual System Color Science Light Sources: Radiometry/Photometry Geometric Optics Tone-transfer Function.
Integrated circuit failure times in hours during stress test David Swanick DSES-6070 HV5 Statistical Methods for Reliability Engineering Summer 2008 Professor.
Various topics Petter Mostad Overview Epidemiology Study types / data types Econometrics Time series data More about sampling –Estimation.
1 SMU EMIS 7364 NTU TO-570-N Inferences About Process Quality Updated: 2/3/04 Statistical Quality Control Dr. Jerrell T. Stracener, SAE Fellow.
2 December 2004PubH8420: Parametric Regression Models Slide 1 Applications - SAS Parametric Regression in SAS –PROC LIFEREG –PROC GENMOD –PROC LOGISTIC.
Applied Epidemiologic Analysis - P8400 Fall 2002 Lab 9 Survival Analysis Henian Chen, M.D., Ph.D.
Chapter 12 Continuous Random Variables and their Probability Distributions.
Copyright © 2011 by The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill/Irwin Model Building and Model Diagnostics Chapter 15.
ETM 607 – Putting It All Together Review for MidTerm II Apply Lessons Learned in a Team Lab - Input Modeling - Absolute Output Analysis - Relative Output.
Statistics and probability Dr. Khaled Ismael Almghari Phone No:
Estimating standard error using bootstrap
TESTING STATISTICAL HYPOTHESES
Summary of t-Test for Testing a Single Population Mean (m)
Why Model? Make predictions or forecasts where we don’t have data.
Chapter 4: Basic Estimation Techniques
Chapter 4 Basic Estimation Techniques
Chapter 4 Continuous Random Variables and Probability Distributions
Continuous Probability Distributions Part 2
April 18 Intro to survival analysis Le 11.1 – 11.2
Basic Estimation Techniques
This Week Review of estimation and hypothesis testing
Chapter 2 Simple Comparative Experiments
Hypothesis Tests: One Sample
Part Three. Data Analysis
Evolution and Population Genetics
III. Population Growth – change in size through time
NATIONAL CENTER FOR CASE STUDY TEACHING IN SCIENCE
Basic Estimation Techniques
SA3202 Statistical Methods for Social Sciences
BA 275 Quantitative Business Methods
6-1 Introduction To Empirical Models
Parametric Survival Models (ch. 7)
Chapter 6 Confidence Intervals.
II. Survivorship.
Jeffrey E. Korte, PhD BMTRY 747: Foundations of Epidemiology II
Continuous Probability Distributions Part 2
MG3117 Issues and Controversies in Accounting
Continuous Probability Distributions Part 2
SIMPLE LINEAR REGRESSION
Continuous Probability Distributions Part 2
Continuous Probability Distributions Part 2
Chapter 4 SURVIVAL AND LIFE TABLES
Sampling Distributions (§ )
Chapter 6 Confidence Intervals.
Population Ecology.
Continuous Probability Distributions Part 2
Chapter 13: Using Statistics
Modeling Ordinal Associations Bin Hu
Presentation transcript:

Survival Analysis {Chapter 12} Time Specific Life Tables Age Specific Method Point Survival Non-parametric Comparing Curves Parametric

Life tables – a way of summarizing statistics on mortality and survivorship. Cohort – a group of individuals born at the same time. There are two different types of life tables: Time specific – information is collected at one time on the age of death of individuals. 2. Age specific – constructed by following a cohort through time and keeping track of the age of death of individuals.

Terms in a life table: x = age 2. nx = number of individuals alive at the start of age x. 3. lx = survivorship = the number of individuals surviving at time x = nx/n0. 4. dx = mortality = the number of individuals dying at time x. 5. qx = mortality rate = the rate at which individuals are dying at time x = dx/nx. 6. Lx = average number of individuals alive between x and x + 1, = (nx + Nx+1)/2. 7. ex = life expectancy = how long the average individual can expect to live at time x = ex = Tx/nx where Tx = xLx

II. Point Estimators Uses mark-and-recapture to estimate survivorship associated with a particular sample period. Generally based on some variation of Jolly-Seber. The most powerful, and potentially user-friendly programs are MARK and SURGE.

III. Comparison of Curves Survival data is often both right and left censured, i.e., how long individuals had been alive prior to sampling, and how long they survive following the termination of sampling, is not known. Parametric: Assumes the distribution of the survival data can be fit to some known distribution: normal, logistic, (or if log transformed) exponential, Weibull, lognormal, loglogistic, or gamma. Non-parametric: Calculates what is known as a survival distribution function {SDF}. The SDF is evaluated at each time t and is the probability that an individual from the population will survive past t. [S(t)=Prob(T>t)]. Only about 5% less powerful than the parametric approach.

Do not confuse with “classic” Type I, II, & III survivorship curves the apply to biological populations.

Example of SAS Statistical Output Parameter Standard Hazard 95% Hazard Ratio Variable DF Estimate Error Chi-Square Pr > ChiSq Ratio Confidence Limits drug 1 0.77919 0.24226 10.3451 0.0013 2.180 1.356 3.504 Percent Total Event Censored Censored 605 489 116 19.17

title ‘Learning Survival Analysis is No Fun’; data inverts; input years plot weight @@; delete weight; censored = (years < 0); years = abs(years); if plot 1 or plot 2 then treat = 1; else treat = 2; cards; 15 1 55 18 1 97 31 4 45 -25 4 45 27 4 61 24 4 36 26 4 78 25 4 45 -25 4 73 28 4 88 ; proc lifetest plots=(s, ls); time years*censored strata treat; Run;

ARIMA: Auto Regressive Integrated Moving Average To describe populations dynamics requires resampling the population, resulting in a lack of independence. Autocorrelation = serial correlation = temporal correlation. White noise – random population dynamics Nonstationarity – when there is a trend in the data.

White Noise:

Negative Autocorrelation:

Positive Autocorrelation

Trending Time Series