<?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 Graphing the probit procedure in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Graphing-the-probit-procedure/m-p/182168#M6692</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Greetings! As a toxicologist I run the probit procedure in order to estimate the LC50 (the chemical concentration which is lethal to 50% of my test microscopic organisms). I get the output in both concentration units and log-transformed. I am interested in generating a graph showing the lethality curve for the log-transformed data. I don't know what code I can add into the proc to get such a graph. Could anyone help? I am copying my code with datalines below. Thank you very much!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data MAB111;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; input form $ dead total conc @@;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; prop = dead/total;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; datalines;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; A 1 30 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; A 15 35 1000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; A 21 32 3000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; A 34 39 5000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; A 34 34 7000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; A 36 36 9000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ods rtf;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; proc sort;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; by form;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; proc probit log10 inversecl lackfit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; model dead/total = conc/d = normal itprint;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; output out=p p=prob std=std xbeta=xbeta;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; by form;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ods rtf close;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Sep 2014 18:54:48 GMT</pubDate>
    <dc:creator>Pepperoni</dc:creator>
    <dc:date>2014-09-01T18:54:48Z</dc:date>
    <item>
      <title>Graphing the probit procedure</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Graphing-the-probit-procedure/m-p/182168#M6692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Greetings! As a toxicologist I run the probit procedure in order to estimate the LC50 (the chemical concentration which is lethal to 50% of my test microscopic organisms). I get the output in both concentration units and log-transformed. I am interested in generating a graph showing the lethality curve for the log-transformed data. I don't know what code I can add into the proc to get such a graph. Could anyone help? I am copying my code with datalines below. Thank you very much!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data MAB111;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; input form $ dead total conc @@;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; prop = dead/total;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; datalines;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; A 1 30 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; A 15 35 1000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; A 21 32 3000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; A 34 39 5000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; A 34 34 7000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; A 36 36 9000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ods rtf;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; proc sort;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; by form;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; proc probit log10 inversecl lackfit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; model dead/total = conc/d = normal itprint;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; output out=p p=prob std=std xbeta=xbeta;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; by form;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ods rtf close;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Sep 2014 18:54:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Graphing-the-probit-procedure/m-p/182168#M6692</guid>
      <dc:creator>Pepperoni</dc:creator>
      <dc:date>2014-09-01T18:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: Graphing the probit procedure</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Graphing-the-probit-procedure/m-p/182169#M6693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you looked at the plots=all option and the default plots?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;proc probit log10 inversecl lackfit plots=all;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;model dead/total = conc/d = normal itprint;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;output out=p p=prob std=std xbeta=xbeta;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;by form;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Sep 2014 19:19:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Graphing-the-probit-procedure/m-p/182169#M6693</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-09-01T19:19:39Z</dc:date>
    </item>
    <item>
      <title>Re: Graphing the probit procedure</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Graphing-the-probit-procedure/m-p/182170#M6694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No plots came up when I tried that. Does that require Java? There was no Java on the machine I used. Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Sep 2014 20:22:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Graphing-the-probit-procedure/m-p/182170#M6694</guid>
      <dc:creator>Pepperoni</dc:creator>
      <dc:date>2014-09-04T20:22:35Z</dc:date>
    </item>
    <item>
      <title>Re: Graphing the probit procedure</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Graphing-the-probit-procedure/m-p/182171#M6695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No idea. One thing to try is an ODS destination instead of listing, &lt;/P&gt;&lt;P&gt;Also, what version of SAS are you using?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ie&lt;/P&gt;&lt;P&gt;ods html;&lt;/P&gt;&lt;P&gt;your code goes here;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods html close;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Sep 2014 16:58:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Graphing-the-probit-procedure/m-p/182171#M6695</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-09-05T16:58:48Z</dc:date>
    </item>
    <item>
      <title>Re: Graphing the probit procedure</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Graphing-the-probit-procedure/m-p/182172#M6696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using SAS 9.3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No plots came up when using the html option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks so much for trying! I'll chart the data generated by SAS in Excel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Sep 2014 16:54:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Graphing-the-probit-procedure/m-p/182172#M6696</guid>
      <dc:creator>Pepperoni</dc:creator>
      <dc:date>2014-09-06T16:54:54Z</dc:date>
    </item>
    <item>
      <title>Re: Graphing the probit procedure</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Graphing-the-probit-procedure/m-p/182173#M6697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Normally, the code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc probit log10 inversecl lackfit plots=predpplot;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;model dead/total = conc/ d = normal ;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;output out=p p=prob std=std xbeta=xbeta;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;by form;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;should produce the requested graph (it does for me)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="probit2.png" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/7330_probit2.png" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODS graphics definitely require Java. Look at the diagnostics from:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc javainfo; run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also look seriously at the fit diagnostics from the procedure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Sep 2014 18:32:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Graphing-the-probit-procedure/m-p/182173#M6697</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2014-09-06T18:32:51Z</dc:date>
    </item>
  </channel>
</rss>

