Testing Significance of coefficients Usually, first examination of model Does the model including the independent variable provide significantly more information.

Slides:



Advertisements
Similar presentations
Simple Logistic Regression
Advertisements

Logistic Regression Example: Horseshoe Crab Data
Multiple Linear Regression
Overview of Logistics Regression and its SAS implementation
Correlation Correlation is the relationship between two quantitative variables. Correlation coefficient (r) measures the strength of the linear relationship.
Creating Graphs on Saturn GOPTIONS DEVICE = png HTITLE=2 HTEXT=1.5 GSFMODE = replace; PROC REG DATA=agebp; MODEL sbp = age; PLOT sbp*age; RUN; This will.
Some Terms Y =  o +  1 X Regression of Y on X Regress Y on X X called independent variable or predictor variable or covariate or factor Which factors.
Multipe and non-linear regression. What is what? Regression: One variable is considered dependent on the other(s) Correlation: No variables are considered.
Multiple regression analysis
Linear statistical models 2008 Binary and binomial responses The response probabilities are modelled as functions of the predictors Link functions: the.
Introduction to Logistic Regression. Simple linear regression Table 1 Age and systolic blood pressure (SBP) among 33 adult women.
EPI 809/Spring Multiple Logistic Regression.
Logistic Regression Biostatistics 510 March 15, 2007 Vanessa Perez.
Notes on Logistic Regression STAT 4330/8330. Introduction Previously, you learned about odds ratios (OR’s). We now transition and begin discussion of.
Linear statistical models 2009 Count data  Contingency tables and log-linear models  Poisson regression.
Poisson Regression Caution Flags (Crashes) in NASCAR Winston Cup Races L. Winner (2006). “NASCAR Winston Cup Race Results for ,” Journal.
Example of Simple and Multiple Regression
Logistic Regression II Simple 2x2 Table (courtesy Hosmer and Lemeshow) Exposure=1Exposure=0 Disease = 1 Disease = 0.
SAS Lecture 5 – Some regression procedures Aidan McDermott, April 25, 2005.
STT : BIOSTATISTICS ANALYSIS Dr. Cuixian Chen Chapter 8: Fitting Parametric Regression Models STT
Introduction to SAS Essentials Mastering SAS for Data Analytics
April 11 Logistic Regression –Modeling interactions –Analysis of case-control studies –Data presentation.
EIPB 698E Lecture 10 Raul Cruz-Cano Fall Comments for future evaluations Include only output used for conclusions Mention p-values explicitly (also.
6-3 Multiple Regression Estimation of Parameters in Multiple Regression.
1 Experimental Statistics - week 2 Review: 2-sample t-tests paired t-tests Thursday: Meet in 15 Clements!! Bring Cody and Smith book.
April 6 Logistic Regression –Estimating probability based on logistic model –Testing differences among multiple groups –Assumptions for model.
2 December 2004PubH8420: Parametric Regression Models Slide 1 Applications - SAS Parametric Regression in SAS –PROC LIFEREG –PROC GENMOD –PROC LOGISTIC.
AN INTRODUCTION TO LOGISTIC REGRESSION ENI SUMARMININGSIH, SSI, MM PROGRAM STUDI STATISTIKA JURUSAN MATEMATIKA UNIVERSITAS BRAWIJAYA.
Relationship between two variables Two quantitative variables: correlation and regression methods Two qualitative variables: contingency table methods.
April 4 Logistic Regression –Lee Chapter 9 –Cody and Smith 9:F.
6-1 Introduction To Empirical Models Based on the scatter diagram, it is probably reasonable to assume that the mean of the random variable Y is.
Week 5: Logistic regression analysis Overview Questions from last week What is logistic regression analysis? The mathematical model Interpreting the β.
Regression in SAS Caitlin Phelps. Importing Data  Proc Import:  Read in variables in data set  May need some options incase SAS doesn’t guess the format.
1 Topic 2 LOGIT analysis of contingency tables. 2 Contingency table a cross classification Table containing two or more variables of classification, and.
6-3 Multiple Regression Estimation of Parameters in Multiple Regression.
Lecture 3 Topic - Descriptive Procedures Programs 3-4 LSB 4:1-4.4; 4:9:4:11; 8:1-8:5; 5:1-5.2.
Xuhua Xia Correlation and Regression Introduction to linear correlation and regression Numerical illustrations SAS and linear correlation/regression –CORR.
Simple Linear Regression. Data available : (X,Y) Goal : To predict the response Y. (i.e. to obtain the fitted response function f(X)) Least Squares Fitting.
Applied Statistics Week 4 Exercise 3 Tick bites and suspicion of Borrelia Mihaela Frincu
28. Multiple regression The Practice of Statistics in the Life Sciences Second Edition.
1 Experimental Statistics - week 12 Chapter 12: Multiple Regression Chapter 13: Variable Selection Model Checking.
Sigmoidal Response (knnl558.sas). Programming Example: knnl565.sas Y = completion of a programming task (1 = yes, 0 = no) X 2 = amount of programming.
We’ll now look at the relationship between a survival variable Y and an explanatory variable X; e.g., Y could be remission time in a leukemia study and.
Applied Epidemiologic Analysis - P8400 Fall 2002 Labs 6 & 7 Case-Control Analysis ----Logistic Regression Henian Chen, M.D., Ph.D.
Logistic Regression Analysis Gerrit Rooks
Psychology 202a Advanced Psychological Statistics November 10, 2015.
Logistic Regression Saed Sayad 1www.ismartsoft.com.
1 Say good things, think good thoughts, and do good deeds.
Dependent Variable Discrete  2 values – binomial  3 or more discrete values – multinomial  Skewed – e.g. Poisson Continuous  Non-normal.
Multiple Regression Analysis Regression analysis with two or more independent variables. Leads to an improvement.
Applied Epidemiologic Analysis - P8400 Fall 2002 Labs 6 & 7 Case-Control Analysis ----Logistic Regression Henian Chen, M.D., Ph.D.
04/19/2006Econ 6161 Econ 616 – Spring 2006 Qualitative Response Regression Models Presented by Yan Hu.
Nonparametric Statistics
Veronica Burt. Reading in the Data options nofmterr; data BCSC.data1; set BCSC.Dr238bs_sum_data_deid_v3_1012; run;
Analysis of matched data Analysis of matched data.
Nonparametric Statistics
REGRESSION (R2).
Logistic Regression.
Notes on Logistic Regression
STA 282 Introduction to Statistics
Nonparametric Statistics
ביצוע רגרסיה לוגיסטית. פרק ה-2
6-1 Introduction To Empirical Models
Demonstrating the Linear Model
Simple Linear Regression
Multiple Linear Regression
Cases. Simple Regression Linear Multiple Regression.
Regression and Correlation of Data
Presentation transcript:

Testing Significance of coefficients Usually, first examination of model Does the model including the independent variable provide significantly more information than a model without the variable?

Compare two models Model containing x Null (Intercept only model)

The null (intercept only) model proc freq data=s5238.chdage; tables chd; run; proc logistic data=s5238.chdage descending; model chd=; run;

Simple Linear Regression title "Height and FEV in 12 boys, years old"; data fev1ht; input height fev label fev="Forced Expiratory Volume (liters)" height="Height (cm)"; datalines; ; proc sql; select * from fev1ht order by height ; quit; title;

Simple linear regression, proc reg proc reg data=fev1ht plots=none; model fev=height; quit;

Two Equivalent Tests

Two tests (no longer equivalent -- asymptotically equivalent) Wald Test Likelihood Ratio Test

Wald Test (two equivalent versions)

ods select parameterestimates; proc logistic data=s5238.chdage descending; model chd=age; run;

The Likelihood Ratio Statistic Software usually report either log(likelihood) or -2log(Likelihood) SAS reports -2log(Likelihood) (deviance)

ods select globaltests parameterestimates; proc logistic data=s5238.chdage ; model chd(event="1")=age; run;