<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: proc logistic inmodel in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/proc-logistic-inmodel/m-p/794034#M81518</link>
    <description>&lt;P&gt;The picture you post is not the contents of the OUTP data set. It looks like the outp_d1 data set.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Copy/Paste the values of the ParameterEstimate table as text (not as an image). It will look something like this:&lt;/P&gt;
&lt;DIV class="branch"&gt;
&lt;DIV&gt;
&lt;DIV align="center"&gt;
&lt;TABLE class="table" summary="Procedure Print: Data Set WORK.OUTP" frame="box" rules="all" cellspacing="0" cellpadding="5"&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="r header" scope="col"&gt;Obs&lt;/TH&gt;
&lt;TH class="l header" scope="col"&gt;Variable&lt;/TH&gt;
&lt;TH class="l header" scope="col"&gt;ClassVal0&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;DF&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;Estimate&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;StdErr&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;WaldChiSq&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;ProbChiSq&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;ExpEst&lt;/TH&gt;
&lt;TH class="l header" scope="col"&gt;_ESTTYPE_&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;1&lt;/TH&gt;
&lt;TD class="l data"&gt;Intercept&lt;/TD&gt;
&lt;TD class="l data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;1&lt;/TD&gt;
&lt;TD class="r data"&gt;0.847258&lt;/TD&gt;
&lt;TD class="r data"&gt;0.6901&lt;/TD&gt;
&lt;TD class="r data"&gt;1.5075&lt;/TD&gt;
&lt;TD class="r data"&gt;0.2195&lt;/TD&gt;
&lt;TD class="r data"&gt;2.333&lt;/TD&gt;
&lt;TD class="l data"&gt;MLE&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;2&lt;/TH&gt;
&lt;TD class="l data"&gt;Sex&lt;/TD&gt;
&lt;TD class="l data"&gt;F&lt;/TD&gt;
&lt;TD class="r data"&gt;1&lt;/TD&gt;
&lt;TD class="r data"&gt;-0.624121&lt;/TD&gt;
&lt;TD class="r data"&gt;0.9624&lt;/TD&gt;
&lt;TD class="r data"&gt;0.4206&lt;/TD&gt;
&lt;TD class="r data"&gt;0.5167&lt;/TD&gt;
&lt;TD class="r data"&gt;0.536&lt;/TD&gt;
&lt;TD class="l data"&gt;MLE&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
    <pubDate>Wed, 02 Feb 2022 15:11:45 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2022-02-02T15:11:45Z</dc:date>
    <item>
      <title>proc logistic inmodel</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-logistic-inmodel/m-p/793958#M81513</link>
      <description>&lt;P&gt;I use the following code to get regression coefficient&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;step 1&lt;/STRONG&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc logistic data=d1 outmodel=outp_d1;
where   first=1;
class  examlevel sex/param=ref;
model pass (event="1")=capte sex time passrate/expb;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Then I applied the regression coefficients got from step 1 to the equation and calculate probability for each examinee, as code below&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;step 2&lt;/STRONG&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data pre12;
set pre11;
if first=1 then logit=-3.9438+0.3341*examlevel-0.1650*sex-0.00713*time+7.3763*passrate;
run;

data pre12;
set pre12;
odds=exp(logit);
run;

data pre12;
set pre12;
prob_pred=odds/(1+odds);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The other way to get probability is by using the results from&lt;STRONG&gt; step 1&lt;/STRONG&gt; as code below&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc logistic inmodel=outp_d1;
score clm data=pre11 out=prob_first;
where    first=1 ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;On examinee level, I got (a little bit) higher probability by using plug in coefficients in the equation than using proc logistic inmodel statement. When I aggregate the probability on group level over thousands of examinees, the difference between these two method of calculate probability are close to 5%, which is to big to be ignored.&amp;nbsp; Any help would be much appreciated. Thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Feb 2022 04:02:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-logistic-inmodel/m-p/793958#M81513</guid>
      <dc:creator>superbug</dc:creator>
      <dc:date>2022-02-02T04:02:07Z</dc:date>
    </item>
    <item>
      <title>Re: proc logistic inmodel</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-logistic-inmodel/m-p/793967#M81514</link>
      <description>I think your code should like :&lt;BR /&gt;&lt;BR /&gt;data pre12;&lt;BR /&gt;set pre12;&lt;BR /&gt;prob_pred=logistic(logit);&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;And  where is PRE11 from . You should include design matrix in it before getting/score predict probability .&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 02 Feb 2022 06:47:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-logistic-inmodel/m-p/793967#M81514</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2022-02-02T06:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: proc logistic inmodel</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-logistic-inmodel/m-p/794014#M81515</link>
      <description>&lt;P&gt;The values you see in SAS tables are rounded values. So in Step 1, the value you typed in as -0.1650 might actually be -0.16495 or -0.165049. That is the most likely cause of your 5% error.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use the statement&lt;BR /&gt;&lt;STRONG&gt;ODS OUTPUT ParameterEstimates=OutP;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;to write the parameter estimates to a SAS data set. You can then use&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;proc print data=outp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;format Estimate bestd16.;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;to see more precision for the estimates.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Feb 2022 14:11:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-logistic-inmodel/m-p/794014#M81515</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2022-02-02T14:11:48Z</dc:date>
    </item>
    <item>
      <title>Re: proc logistic inmodel</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-logistic-inmodel/m-p/794031#M81517</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks much for your suggestion!&lt;/P&gt;
&lt;P&gt;I tried the statements you suggested, but I can't see more decimal places in the output file after running proc print. My "outp" file looks like below, so I plugged the highlighted numbers in the equation. I randomly selected a few examinees, I noticed the probability for each examinee calculated by plugging in the coefficients is higher than using the "proc logistic inmodel=".&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any other suggestions for me to try?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="superbug_1-1643814075190.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/68160iDC79460601CCD04A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="superbug_1-1643814075190.png" alt="superbug_1-1643814075190.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Feb 2022 15:03:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-logistic-inmodel/m-p/794031#M81517</guid>
      <dc:creator>superbug</dc:creator>
      <dc:date>2022-02-02T15:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: proc logistic inmodel</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-logistic-inmodel/m-p/794034#M81518</link>
      <description>&lt;P&gt;The picture you post is not the contents of the OUTP data set. It looks like the outp_d1 data set.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Copy/Paste the values of the ParameterEstimate table as text (not as an image). It will look something like this:&lt;/P&gt;
&lt;DIV class="branch"&gt;
&lt;DIV&gt;
&lt;DIV align="center"&gt;
&lt;TABLE class="table" summary="Procedure Print: Data Set WORK.OUTP" frame="box" rules="all" cellspacing="0" cellpadding="5"&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="r header" scope="col"&gt;Obs&lt;/TH&gt;
&lt;TH class="l header" scope="col"&gt;Variable&lt;/TH&gt;
&lt;TH class="l header" scope="col"&gt;ClassVal0&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;DF&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;Estimate&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;StdErr&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;WaldChiSq&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;ProbChiSq&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;ExpEst&lt;/TH&gt;
&lt;TH class="l header" scope="col"&gt;_ESTTYPE_&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;1&lt;/TH&gt;
&lt;TD class="l data"&gt;Intercept&lt;/TD&gt;
&lt;TD class="l data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;1&lt;/TD&gt;
&lt;TD class="r data"&gt;0.847258&lt;/TD&gt;
&lt;TD class="r data"&gt;0.6901&lt;/TD&gt;
&lt;TD class="r data"&gt;1.5075&lt;/TD&gt;
&lt;TD class="r data"&gt;0.2195&lt;/TD&gt;
&lt;TD class="r data"&gt;2.333&lt;/TD&gt;
&lt;TD class="l data"&gt;MLE&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;2&lt;/TH&gt;
&lt;TD class="l data"&gt;Sex&lt;/TD&gt;
&lt;TD class="l data"&gt;F&lt;/TD&gt;
&lt;TD class="r data"&gt;1&lt;/TD&gt;
&lt;TD class="r data"&gt;-0.624121&lt;/TD&gt;
&lt;TD class="r data"&gt;0.9624&lt;/TD&gt;
&lt;TD class="r data"&gt;0.4206&lt;/TD&gt;
&lt;TD class="r data"&gt;0.5167&lt;/TD&gt;
&lt;TD class="r data"&gt;0.536&lt;/TD&gt;
&lt;TD class="l data"&gt;MLE&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Wed, 02 Feb 2022 15:11:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-logistic-inmodel/m-p/794034#M81518</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2022-02-02T15:11:45Z</dc:date>
    </item>
    <item>
      <title>Re: proc logistic inmodel</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-logistic-inmodel/m-p/794035#M81519</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much for the help.&lt;/P&gt;
&lt;P&gt;I tried&amp;nbsp;&lt;SPAN&gt;prob_pred=logistic(logit) as you suggested to calculated the probability, I got the same probability as the calculation I used (step 2 in my original post) for each examinee.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;My step 1 is for purpose of getting regression coefficients. Then I want to apply those coefficient to a dataset "pre11".&amp;nbsp; I manually plugged those coefficients and generated dataset "pre12" (as in step 2). Another method of applying those coefficients is using "proc logistic inmodel=" procedure (the bottom part of my original post). For each examinee, I got higher probability by manually plugging in coefficients than by using the proc logist inmodel procedure. The probability difference on group level is close to 5%. I have to find out where did the difference of probability come from between those two methods. I am wondering do you have any other suggestions for me to try? Thanks again!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Feb 2022 15:22:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-logistic-inmodel/m-p/794035#M81519</guid>
      <dc:creator>superbug</dc:creator>
      <dc:date>2022-02-02T15:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: proc logistic inmodel</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-logistic-inmodel/m-p/794044#M81520</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for replying my question!&lt;/P&gt;
&lt;P&gt;In my original post, as in the picture below (sorry for having to block the name of variables due to confidentiality), I copied and pasted the "Estimates" into the equation to calculate probability for each examinee, but got higher probability for each examinee than using "proc logist inmodel=" procedure to calculate probability. I hope I made my question clearer.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="superbug_2-1643815624281.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/68163i1BBD56994EBA42EB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="superbug_2-1643815624281.png" alt="superbug_2-1643815624281.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="branch"&gt;
&lt;DIV&gt;
&lt;DIV align="center"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Wed, 02 Feb 2022 15:33:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-logistic-inmodel/m-p/794044#M81520</guid>
      <dc:creator>superbug</dc:creator>
      <dc:date>2022-02-02T15:33:02Z</dc:date>
    </item>
    <item>
      <title>Re: proc logistic inmodel</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-logistic-inmodel/m-p/794046#M81521</link>
      <description>&lt;P&gt;I'll try one more time. Please do the following:&lt;/P&gt;
&lt;P&gt;1. Run the following code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc logistic data=d1 outmodel=outp_d1;
where   first=1;
class  examlevel sex/param=ref;
model pass (event="1")=capte sex time passrate/expb;
ods output ParameterEstimates=OutP;
run;

proc print data=outp;
format Estimate bestd16.;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;2. Select the results of PROC PRINT. Copy them into the buffer.&amp;nbsp;Paste them into your response. We are not interested in a screenshot image.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Feb 2022 15:38:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-logistic-inmodel/m-p/794046#M81521</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2022-02-02T15:38:19Z</dc:date>
    </item>
    <item>
      <title>Re: proc logistic inmodel</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-logistic-inmodel/m-p/794054#M81522</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried as you suggested. The probabilities are still a little higher by coping and pasting the coefficients than using the proc logistic inmodel procedure. Is there anything we can do about proc logistic inmodel procedure? Or is there anything wrong of my proc logistic inmodel as below? Thank you!!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc logistic inmodel=outp_d1;
score clm data=pre11 out=prob_first;
where    first=1 ;
run&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 02 Feb 2022 16:12:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-logistic-inmodel/m-p/794054#M81522</guid>
      <dc:creator>superbug</dc:creator>
      <dc:date>2022-02-02T16:12:34Z</dc:date>
    </item>
    <item>
      <title>Re: proc logistic inmodel</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-logistic-inmodel/m-p/794057#M81523</link>
      <description>&lt;P&gt;Good luck solving your problem.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Feb 2022 16:18:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-logistic-inmodel/m-p/794057#M81523</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2022-02-02T16:18:53Z</dc:date>
    </item>
    <item>
      <title>Re: proc logistic inmodel</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-logistic-inmodel/m-p/794058#M81524</link>
      <description>&lt;P&gt;Here's a way to show that the estimates are the same, any differences are typically from numerical precision issues.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/Statistical-Procedures/How-to-determine-logistic-regression-formula-from-estimates/td-p/120780" target="_blank"&gt;https://communities.sas.com/t5/Statistical-Procedures/How-to-determine-logistic-regression-formula-from-estimates/td-p/120780&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Feb 2022 16:19:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-logistic-inmodel/m-p/794058#M81524</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2022-02-02T16:19:30Z</dc:date>
    </item>
    <item>
      <title>Re: proc logistic inmodel</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-logistic-inmodel/m-p/794105#M81525</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks much for providing the information!&lt;/P&gt;
&lt;P&gt;My sas code is as below&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc logistic data=d1 outmodel=outp_d1;
where   first=1;
class   sex (ref='0')/param=ref;
model pass (event="1")= sex time passrate/expb;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;in my code above, &lt;STRONG&gt;male is coded as 0&lt;/STRONG&gt;. By using the code above, I got the following output, what does&amp;nbsp;&lt;STRONG&gt;1&lt;/STRONG&gt; (in bold) following sex mean? Does it mean 0.3299 is the parameter estimate for female? My results is a little bit counter intuitive. I'd like to check with you expert. Thank you for taking time to answer my question.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TD colspan="8"&gt;
&lt;P&gt;&lt;STRONG&gt;Analysis of Maximum Likelihood Estimates&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;
&lt;P&gt;&lt;STRONG&gt;Parameter&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;&lt;STRONG&gt;DF&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;&lt;STRONG&gt;Estimate&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;&lt;STRONG&gt;Standard&lt;BR /&gt;Error&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;&lt;STRONG&gt;Wald&lt;BR /&gt;Chi-Square&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;&lt;STRONG&gt;Pr&amp;nbsp;&amp;gt;&amp;nbsp;ChiSq&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;&lt;STRONG&gt;Exp(Est)&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;
&lt;P&gt;&lt;STRONG&gt;Intercept&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;1&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;-3.7746&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;0.1433&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;693.8620&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;&amp;lt;.0001&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;0.023&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;
&lt;P&gt;&lt;STRONG&gt;sex&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;1&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;0.3299&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;0.0439&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;56.5428&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;&amp;lt;.0001&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;1.391&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;
&lt;P&gt;&lt;STRONG&gt;time&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;1&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;-0.00713&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;0.000960&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;55.2062&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;&amp;lt;.0001&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;0.993&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;
&lt;P&gt;&lt;STRONG&gt;pass&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;1&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;7.3763&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;0.2057&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;1285.7808&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;&amp;lt;.0001&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;1597.655&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
      <pubDate>Wed, 02 Feb 2022 20:47:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-logistic-inmodel/m-p/794105#M81525</guid>
      <dc:creator>superbug</dc:creator>
      <dc:date>2022-02-02T20:47:54Z</dc:date>
    </item>
    <item>
      <title>Re: proc logistic inmodel</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-logistic-inmodel/m-p/794107#M81526</link>
      <description>Yes, that is the estimate for when Female = 1 &lt;BR /&gt;The estimate for Male ends up incorporated into the Intercept essentially, one of the effects of dummy coding. &lt;BR /&gt;&lt;BR /&gt;If you're unsure of the interpretation use an explicit ODDSRATIO statement that lets you specify exactly what you want and see if the output matches what you expect. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 02 Feb 2022 20:51:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-logistic-inmodel/m-p/794107#M81526</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2022-02-02T20:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: proc logistic inmodel</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-logistic-inmodel/m-p/794125#M81527</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you all so much for your expertise!&lt;/P&gt;
&lt;P&gt;I very much appreciate your time and help!&lt;/P&gt;</description>
      <pubDate>Wed, 02 Feb 2022 22:08:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-logistic-inmodel/m-p/794125#M81527</guid>
      <dc:creator>superbug</dc:creator>
      <dc:date>2022-02-02T22:08:57Z</dc:date>
    </item>
  </channel>
</rss>

