<?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: Calculation of Logit(Y) in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Calculation-of-Logit-Y/m-p/602965#M29302</link>
    <description>&lt;P&gt;You already have the formula, so where's the problem? In code, you just need this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
set have; * provides values for y;
x = 30;
result = -300 + 0.5 * x + 0.3 * y;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Sat, 09 Nov 2019 09:15:58 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2019-11-09T09:15:58Z</dc:date>
    <item>
      <title>Calculation of Logit(Y)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Calculation-of-Logit-Y/m-p/602956#M29301</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need your help in the calculation of Logit(y)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Logit(y) = -300 + 0.5 * x + 0.3 * y&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;x=30&lt;/P&gt;&lt;P&gt;value of y is unknown&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Sat, 09 Nov 2019 02:31:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Calculation-of-Logit-Y/m-p/602956#M29301</guid>
      <dc:creator>GVA</dc:creator>
      <dc:date>2019-11-09T02:31:57Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation of Logit(Y)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Calculation-of-Logit-Y/m-p/602965#M29302</link>
      <description>&lt;P&gt;You already have the formula, so where's the problem? In code, you just need this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
set have; * provides values for y;
x = 30;
result = -300 + 0.5 * x + 0.3 * y;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 09 Nov 2019 09:15:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Calculation-of-Logit-Y/m-p/602965#M29302</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-11-09T09:15:58Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation of Logit(Y)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Calculation-of-Logit-Y/m-p/602972#M29303</link>
      <description>&lt;P&gt;It seems you are looking for a root of function.&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp; wrote some blogs about it .&lt;/P&gt;</description>
      <pubDate>Sat, 09 Nov 2019 11:42:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Calculation-of-Logit-Y/m-p/602972#M29303</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-11-09T11:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation of Logit(Y)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Calculation-of-Logit-Y/m-p/602976#M29304</link>
      <description>&lt;P&gt;Please recheck your equations. For that value of x, you are asking for the value y such that&amp;nbsp;&lt;/P&gt;
&lt;P&gt;logit(y) = -285 + 0.3*y;&lt;/P&gt;
&lt;P&gt;Did you really intend to have y on both sides of the equation?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If so...&lt;/P&gt;
&lt;P&gt;For the logit function to be defined, y is in (0, 1). The value logit(y) approaches minus infinity as y -&amp;gt;0, so we are looking for a tiny value of y. Therefore we can effectively ignore the term that includes y on the right and approximate the solution by&lt;/P&gt;
&lt;P&gt;logit(y) = -285&lt;/P&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;P&gt;y = logistic(-285) = 1.68E-124.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If y represents the probability of some event, this calculation shows that the probability is effectively 0.&lt;/P&gt;</description>
      <pubDate>Sat, 09 Nov 2019 12:29:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Calculation-of-Logit-Y/m-p/602976#M29304</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2019-11-09T12:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation of Logit(Y)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Calculation-of-Logit-Y/m-p/603357#M29321</link>
      <description>&lt;P&gt;Thank you - for the explanation.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2019 21:05:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Calculation-of-Logit-Y/m-p/603357#M29321</guid>
      <dc:creator>GVA</dc:creator>
      <dc:date>2019-11-11T21:05:55Z</dc:date>
    </item>
  </channel>
</rss>

