<?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: How to manually compute via excel the predicted probability in binary logistic regression? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-manually-compute-via-excel-the-predicted-probability-in/m-p/486208#M25180</link>
    <description>&lt;P&gt;You forgot the PARAM=REF portion on the CLASS statement. Check the design matrix in the output, it's using a GLM method instead of referential coding. Once thats fixed it matches pretty closely (0.0000X) usually.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc logistic data=Neuralgia;
class Treatment Sex / &lt;FONT size="5" color="#800080"&gt;&lt;STRONG&gt;PARAM=REF&lt;/STRONG&gt;&lt;/FONT&gt;;
model Pain= Treatment Sex Age/expb ctable;
output predprobs=(INDIVIDUAL CUMULATIVE CROSSVALIDATE);
run;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But, a blast from the past (5 years ago) I did work this out with someone else, step by step so hopefully this thread can help you out if you have further 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/SAS-Statistical-Procedures/How-to-determine-logistic-regression-formula-from-estimates/td-p/120780" target="_blank"&gt;https://communities.sas.com/t5/SAS-Statistical-Procedures/How-to-determine-logistic-regression-formula-from-estimates/td-p/120780&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS. Thanks for posting a fully worked example, makes it much easier to verify/answer your question.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;EDIT: Didn't see&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/32733"&gt;@FreelanceReinh&lt;/a&gt;&amp;nbsp;solution for some reason before I posted this, his response is more detailed than mine and should be marked correct.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/153826"&gt;@Cindy789&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi Guys!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope someone could help me. Am performing binary logistic regression in SAS and am trying to figure out if it is possible to manually compute (via Excel) for the predicted probabilities (individual, cross validated, and cumulative) generated&amp;nbsp;by SAS? If yes, what is the formula?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am using the formula exp(bo+(b1*x1)+...+&lt;SPAN&gt;(bn*xn))/(1+exp(bo+(b1*x1)+...+(bn*xn))) but the values don't match with the predicted probabilities.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've used sample from the SAS documentation and added the predicted probabilities (&lt;SPAN&gt;predprobs&lt;/SPAN&gt;) in output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Data Neuralgia;&lt;BR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/187967"&gt;@input&lt;/a&gt; Treatment $ Sex $ Age Duration Pain $ @@;&lt;BR /&gt;datalines;&lt;BR /&gt;P F 68 1 No B M 74 16 No P F 67 30 No&lt;BR /&gt;P M 66 26 Yes B F 67 28 No B F 77 16 No&lt;BR /&gt;A F 71 12 No B F 72 50 No B F 76 9 Yes&lt;BR /&gt;A M 71 17 Yes A F 63 27 No A F 69 18 Yes&lt;BR /&gt;B F 66 12 No A M 62 42 No P F 64 1 Yes&lt;BR /&gt;A F 64 17 No P M 74 4 No A F 72 25 No&lt;BR /&gt;P M 70 1 Yes B M 66 19 No B M 59 29 No&lt;BR /&gt;A F 64 30 No A M 70 28 No A M 69 1 No&lt;BR /&gt;B F 78 1 No P M 83 1 Yes B F 69 42 No&lt;BR /&gt;B M 75 30 Yes P M 77 29 Yes P F 79 20 Yes&lt;BR /&gt;A M 70 12 No A F 69 12 No B F 65 14 No&lt;BR /&gt;B M 70 1 No B M 67 23 No A M 76 25 Yes&lt;BR /&gt;P M 78 12 Yes B M 77 1 Yes B F 69 24 No&lt;BR /&gt;P M 66 4 Yes P F 65 29 No P M 60 26 Yes&lt;BR /&gt;A M 78 15 Yes B M 75 21 Yes A F 67 11 No&lt;BR /&gt;P F 72 27 No P F 70 13 Yes A M 75 6 Yes&lt;BR /&gt;B F 65 7 No P F 68 27 Yes P M 68 11 Yes&lt;BR /&gt;P M 67 17 Yes B M 70 22 No A M 65 15 No&lt;BR /&gt;P F 67 1 Yes A M 67 10 No P F 72 11 Yes&lt;BR /&gt;A F 74 1 No B M 80 21 Yes A F 69 3 No&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;proc logistic data=Neuralgia;&lt;BR /&gt;class Treatment Sex;&lt;BR /&gt;model Pain= Treatment Sex Treatment*Sex Age Duration / selection=backward expb;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;proc logistic data=Neuralgia;&lt;BR /&gt;class Treatment Sex;&lt;BR /&gt;model Pain= Treatment Sex Age/expb ctable;&lt;BR /&gt;output predprobs=(INDIVIDUAL CUMULATIVE CROSSVALIDATE);&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;proc print data=data1;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 13 Aug 2018 00:09:30 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2018-08-13T00:09:30Z</dc:date>
    <item>
      <title>How to manually compute via excel the predicted probability in binary logistic regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-manually-compute-via-excel-the-predicted-probability-in/m-p/486151#M25178</link>
      <description>&lt;P&gt;Hi Guys!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope someone could help me. Am performing binary logistic regression in SAS and am trying to figure out if it is possible to manually compute (via Excel) for the predicted probabilities (individual, cross validated, and cumulative) generated&amp;nbsp;by SAS? If yes, what is the formula?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using the formula exp(bo+(b1*x1)+...+&lt;SPAN&gt;(bn*xn))/(1+exp(bo+(b1*x1)+...+(bn*xn))) but the values don't match with the predicted probabilities.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've used sample from the SAS documentation and added the predicted probabilities (&lt;SPAN&gt;predprobs&lt;/SPAN&gt;) in output.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Data Neuralgia;&lt;BR /&gt;input Treatment $ Sex $ Age Duration Pain $ @@;&lt;BR /&gt;datalines;&lt;BR /&gt;P F 68 1 No B M 74 16 No P F 67 30 No&lt;BR /&gt;P M 66 26 Yes B F 67 28 No B F 77 16 No&lt;BR /&gt;A F 71 12 No B F 72 50 No B F 76 9 Yes&lt;BR /&gt;A M 71 17 Yes A F 63 27 No A F 69 18 Yes&lt;BR /&gt;B F 66 12 No A M 62 42 No P F 64 1 Yes&lt;BR /&gt;A F 64 17 No P M 74 4 No A F 72 25 No&lt;BR /&gt;P M 70 1 Yes B M 66 19 No B M 59 29 No&lt;BR /&gt;A F 64 30 No A M 70 28 No A M 69 1 No&lt;BR /&gt;B F 78 1 No P M 83 1 Yes B F 69 42 No&lt;BR /&gt;B M 75 30 Yes P M 77 29 Yes P F 79 20 Yes&lt;BR /&gt;A M 70 12 No A F 69 12 No B F 65 14 No&lt;BR /&gt;B M 70 1 No B M 67 23 No A M 76 25 Yes&lt;BR /&gt;P M 78 12 Yes B M 77 1 Yes B F 69 24 No&lt;BR /&gt;P M 66 4 Yes P F 65 29 No P M 60 26 Yes&lt;BR /&gt;A M 78 15 Yes B M 75 21 Yes A F 67 11 No&lt;BR /&gt;P F 72 27 No P F 70 13 Yes A M 75 6 Yes&lt;BR /&gt;B F 65 7 No P F 68 27 Yes P M 68 11 Yes&lt;BR /&gt;P M 67 17 Yes B M 70 22 No A M 65 15 No&lt;BR /&gt;P F 67 1 Yes A M 67 10 No P F 72 11 Yes&lt;BR /&gt;A F 74 1 No B M 80 21 Yes A F 69 3 No&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc logistic data=Neuralgia;&lt;BR /&gt;class Treatment Sex;&lt;BR /&gt;model Pain= Treatment Sex Treatment*Sex Age Duration / selection=backward expb;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc logistic data=Neuralgia;&lt;BR /&gt;class Treatment Sex;&lt;BR /&gt;model Pain= Treatment Sex Age/expb ctable;&lt;BR /&gt;output predprobs=(INDIVIDUAL CUMULATIVE CROSSVALIDATE);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc print data=data1;&lt;/P&gt;</description>
      <pubDate>Sun, 12 Aug 2018 13:01:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-manually-compute-via-excel-the-predicted-probability-in/m-p/486151#M25178</guid>
      <dc:creator>Cindy789</dc:creator>
      <dc:date>2018-08-12T13:01:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to manually compute via excel the predicted probability in binary logistic regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-manually-compute-via-excel-the-predicted-probability-in/m-p/486189#M25179</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/153826"&gt;@Cindy789&lt;/a&gt;&amp;nbsp;and welcome to the SAS Support Communities!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I haven't opened your Excel table (I don't have Excel installed on my SAS workstation), only the preview. But it seems that you calculated the predicted probabilities as if &lt;EM&gt;reference cell coding&lt;/EM&gt; had been used as the&amp;nbsp;&lt;SPAN&gt;parameterization method for the classification variables. However, the default is &lt;EM&gt;effect coding&lt;/EM&gt; (see &lt;A href="https://documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_logistic_syntax05.htm&amp;amp;docsetVersion=14.3&amp;amp;locale=en" target="_blank"&gt;documentation&lt;/A&gt;&amp;nbsp;of the CLASS statement, option PARAM=). I think the easiest correction will be to switch to reference cell coding:&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;class Treatment Sex&lt;FONT color="#FF0000"&gt; / param=ref&lt;/FONT&gt;;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;This means in your case, more explicitly:&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;class Treatment(ref='P') Sex(ref='M') / param=ref;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;If you rerun the PROC LOGISTIC step with this modification (either of the above two versions), you will notice the changes in sections "Class Level Information" and "Analysis of Maximum Likelihood Estimates" of the output. Then you can leave the Excel formulas unchanged and just use the new estimates for Intercept etc. (no change for Age, of course). Otherwise you'd have to take into account the design variable values of −1 for Treatment='P' and Sex='M' (see table "Class Level Information") in your Excel formulas.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The remaining discrepancies (such as 0.0001, 0.0006 etc. for obs. 6, 7, ...) will be due to rounding errors. (&lt;/SPAN&gt;&lt;SPAN&gt;Not surprisingly, the only substantial differences had occurred where Treatment='P' or Sex='M'.) You can reduce the rounding errors by using values with more decimals for the&amp;nbsp;estimates. Just request an ODS output dataset:&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods output ParameterEstimates=est;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;(before or in the PROC LOGISTIC step) and then print it with a suitable format in order to obtain those more precise values:&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc print data=est;
format estimate best18.;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;As to the "cumulative" probabilities: These are redundant for &lt;EM&gt;binary&lt;/EM&gt; logistic regression (given the individual probabilities): As you've surely noticed, CP_No=IP_No and CP_Yes=1 in your dataset DATA1.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I don't think there is an easy way to calculate the&amp;nbsp;&lt;/SPAN&gt;cross-validated predicted probabilities in Excel.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 12 Aug 2018 21:12:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-manually-compute-via-excel-the-predicted-probability-in/m-p/486189#M25179</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2018-08-12T21:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to manually compute via excel the predicted probability in binary logistic regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-manually-compute-via-excel-the-predicted-probability-in/m-p/486208#M25180</link>
      <description>&lt;P&gt;You forgot the PARAM=REF portion on the CLASS statement. Check the design matrix in the output, it's using a GLM method instead of referential coding. Once thats fixed it matches pretty closely (0.0000X) usually.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc logistic data=Neuralgia;
class Treatment Sex / &lt;FONT size="5" color="#800080"&gt;&lt;STRONG&gt;PARAM=REF&lt;/STRONG&gt;&lt;/FONT&gt;;
model Pain= Treatment Sex Age/expb ctable;
output predprobs=(INDIVIDUAL CUMULATIVE CROSSVALIDATE);
run;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But, a blast from the past (5 years ago) I did work this out with someone else, step by step so hopefully this thread can help you out if you have further 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/SAS-Statistical-Procedures/How-to-determine-logistic-regression-formula-from-estimates/td-p/120780" target="_blank"&gt;https://communities.sas.com/t5/SAS-Statistical-Procedures/How-to-determine-logistic-regression-formula-from-estimates/td-p/120780&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS. Thanks for posting a fully worked example, makes it much easier to verify/answer your question.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;EDIT: Didn't see&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/32733"&gt;@FreelanceReinh&lt;/a&gt;&amp;nbsp;solution for some reason before I posted this, his response is more detailed than mine and should be marked correct.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/153826"&gt;@Cindy789&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi Guys!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope someone could help me. Am performing binary logistic regression in SAS and am trying to figure out if it is possible to manually compute (via Excel) for the predicted probabilities (individual, cross validated, and cumulative) generated&amp;nbsp;by SAS? If yes, what is the formula?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am using the formula exp(bo+(b1*x1)+...+&lt;SPAN&gt;(bn*xn))/(1+exp(bo+(b1*x1)+...+(bn*xn))) but the values don't match with the predicted probabilities.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've used sample from the SAS documentation and added the predicted probabilities (&lt;SPAN&gt;predprobs&lt;/SPAN&gt;) in output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Data Neuralgia;&lt;BR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/187967"&gt;@input&lt;/a&gt; Treatment $ Sex $ Age Duration Pain $ @@;&lt;BR /&gt;datalines;&lt;BR /&gt;P F 68 1 No B M 74 16 No P F 67 30 No&lt;BR /&gt;P M 66 26 Yes B F 67 28 No B F 77 16 No&lt;BR /&gt;A F 71 12 No B F 72 50 No B F 76 9 Yes&lt;BR /&gt;A M 71 17 Yes A F 63 27 No A F 69 18 Yes&lt;BR /&gt;B F 66 12 No A M 62 42 No P F 64 1 Yes&lt;BR /&gt;A F 64 17 No P M 74 4 No A F 72 25 No&lt;BR /&gt;P M 70 1 Yes B M 66 19 No B M 59 29 No&lt;BR /&gt;A F 64 30 No A M 70 28 No A M 69 1 No&lt;BR /&gt;B F 78 1 No P M 83 1 Yes B F 69 42 No&lt;BR /&gt;B M 75 30 Yes P M 77 29 Yes P F 79 20 Yes&lt;BR /&gt;A M 70 12 No A F 69 12 No B F 65 14 No&lt;BR /&gt;B M 70 1 No B M 67 23 No A M 76 25 Yes&lt;BR /&gt;P M 78 12 Yes B M 77 1 Yes B F 69 24 No&lt;BR /&gt;P M 66 4 Yes P F 65 29 No P M 60 26 Yes&lt;BR /&gt;A M 78 15 Yes B M 75 21 Yes A F 67 11 No&lt;BR /&gt;P F 72 27 No P F 70 13 Yes A M 75 6 Yes&lt;BR /&gt;B F 65 7 No P F 68 27 Yes P M 68 11 Yes&lt;BR /&gt;P M 67 17 Yes B M 70 22 No A M 65 15 No&lt;BR /&gt;P F 67 1 Yes A M 67 10 No P F 72 11 Yes&lt;BR /&gt;A F 74 1 No B M 80 21 Yes A F 69 3 No&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;proc logistic data=Neuralgia;&lt;BR /&gt;class Treatment Sex;&lt;BR /&gt;model Pain= Treatment Sex Treatment*Sex Age Duration / selection=backward expb;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;proc logistic data=Neuralgia;&lt;BR /&gt;class Treatment Sex;&lt;BR /&gt;model Pain= Treatment Sex Age/expb ctable;&lt;BR /&gt;output predprobs=(INDIVIDUAL CUMULATIVE CROSSVALIDATE);&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;proc print data=data1;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Aug 2018 00:09:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-manually-compute-via-excel-the-predicted-probability-in/m-p/486208#M25180</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-08-13T00:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to manually compute via excel the predicted probability in binary logistic regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-manually-compute-via-excel-the-predicted-probability-in/m-p/487978#M25316</link>
      <description>&lt;P&gt;Appreciate your help &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/32733"&gt;@FreelanceReinh&lt;/a&gt;&amp;nbsp;and &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;, thank you so much for explaining it very well for me. The changes in the program worked! Have added the (ref=' ') as well as the param=ref. As you've said, there are minimal discrepancies due to rounding errors but other than that, it worked perfectly! Thank you for sharing your expertise!&lt;/P&gt;</description>
      <pubDate>Sat, 18 Aug 2018 01:59:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-manually-compute-via-excel-the-predicted-probability-in/m-p/487978#M25316</guid>
      <dc:creator>Cindy789</dc:creator>
      <dc:date>2018-08-18T01:59:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to manually compute via excel the predicted probability in binary logistic regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-manually-compute-via-excel-the-predicted-probability-in/m-p/487980#M25317</link>
      <description>&lt;P&gt;As I mentioned in my previous response -&amp;nbsp;thank you&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;!&amp;nbsp;Am definitely happy to know the correct solution for my problem and also glad I made it easier for you to verify. Thank you again!&lt;/P&gt;</description>
      <pubDate>Sat, 18 Aug 2018 02:08:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-manually-compute-via-excel-the-predicted-probability-in/m-p/487980#M25317</guid>
      <dc:creator>Cindy789</dc:creator>
      <dc:date>2018-08-18T02:08:36Z</dc:date>
    </item>
  </channel>
</rss>

