BookmarkSubscribeRSS Feed
vishal_prof_gmail_com
Obsidian | Level 7

Hi,

 

In Proc Logistics , Maximum Likelihood Estimate is received as an output. For each variable , estimate , Standard Error & Chi-Square statistics is obtained. Estimate =  Chi-Square statistics / Standard Error.

 

My question is Chi Square distribution is the distribution of frequencies , so how can it  be used in above formula. The formula very well suits , when we calculate estimate from t-statistics in Linear Regression. T- Statistics follows T distribution which is (x- u)/ SE.

 

How the same fornmula can be used for Logistic and Linear regression is something not clear to me.

 

Thanks,

 

Vishal

3 REPLIES 3
Rick_SAS
SAS Super FREQ

Sorry if I am misunderstanding, but I cannot reproduce your assertion that "Estimate =  Chi-Square statistics / Standard Error".  Could you show us what code you are using (and data, if possible)?

 

Here is an example from the Getting Started example in the PROC LOGISTIC documentation. In this example, the product of the Estimate column and the Standard Error column does not equal the Wald Chi-Square column.

 

data ingots;
   input Heat Soak NotReady Freq @@;
   datalines;
7 1.0 0 10  14 1.0 0 31  14 4.0 0 19  27 2.2 0 21  51 1.0 1  3
7 1.7 0 17  14 1.7 0 43  27 1.0 1  1  27 2.8 1  1  51 1.0 0 10
7 2.2 0  7  14 2.2 1  2  27 1.0 0 55  27 2.8 0 21  51 1.7 0  1
7 2.8 0 12  14 2.2 0 31  27 1.7 1  4  27 4.0 1  1  51 2.2 0  1
7 4.0 0  9  14 2.8 0 31  27 1.7 0 40  27 4.0 0 15  51 4.0 0  1
;

ods select ParameterEstimates;
proc logistic data=ingots;
   model NotReady(event='1') = Heat Soak;
   freq Freq;
run;
Reeza
Super User
I think your question is statistical, not really related to SAS. You can review the statistical methods behind logistic regression here:
http://www.upa.pdx.edu/IOA/newsom/da2/ho_logistic.pdf

Or in a variety of other places.
lvm
Rhodochrosite | Level 12 lvm
Rhodochrosite | Level 12

The chi-squared statistic in the output is just the Wald statistic, (estimate/SE)^2. The square root of the chi-squared statistic for a single parameter estimate is just the t statistic (with infinite denominator df). 

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 3 replies
  • 1523 views
  • 0 likes
  • 4 in conversation