<?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: Probit analysis for LD50 calculation in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Probit-analysis-for-LD50-calculation/m-p/522776#M73449</link>
    <description>&lt;P&gt;Hi, PG&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your reply, it really resolves my doubt.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Charlie&lt;/P&gt;</description>
    <pubDate>Thu, 20 Dec 2018 03:19:40 GMT</pubDate>
    <dc:creator>Charlie</dc:creator>
    <dc:date>2018-12-20T03:19:40Z</dc:date>
    <item>
      <title>Probit analysis for LD50 calculation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Probit-analysis-for-LD50-calculation/m-p/521587#M73419</link>
      <description>&lt;P&gt;I am trying to do probit analysis for 95% confidence Limit and it is my first time to use this procedure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've got an example in .xls file which is downloaded from&amp;nbsp;&lt;A href="https://probitanalysis.wordpress.com/2016/07/07/first-blog-post/" target="_blank"&gt;https://probitanalysis.wordpress.com/2016/07/07/first-blog-post/&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used codes as following (reference to&amp;nbsp;&lt;SPAN&gt;LD50 calculation for mixture of dose concentrations in community&lt;/SPAN&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;PRE&gt;data A;&lt;BR /&gt;input dose total dead;&lt;BR /&gt;cards;&lt;BR /&gt;0.03 10 0&lt;BR /&gt;0.10 10 1&lt;BR /&gt;0.30 10 5&lt;BR /&gt;3.00 10 8&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;proc probit data=A log10 plot=predpplot;&lt;BR /&gt;model Dead / Total = dose / d=logistic InverseCL(prob=0.1 to 0.9 by 0.1);&lt;BR /&gt;run;&lt;/PRE&gt;&lt;P&gt;However, the results of 95% Fiducial Limits are different from example and proc probit dose not provide information for curve fitting ( I need to use proc reg?). How can I reproduce the result from the example file?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Furthermore, I used the same code for my data;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data B;
input dose total dead;
cards;
0.64 12 9
0.8 12 10
1 12 8
1.25 12 9
1.56 12 9
1.95 12 8
;

proc probit data=B log10 plot=predpplot;
model dead / total = dose / d=logistic  InverseCL(prob=0.1 to 0.9 by 0.1);
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The&amp;nbsp;&lt;SPAN&gt;95% Fiducial Limits didnot estimate in the result and there was no warring from SAS. I am wondering&amp;nbsp;if I could find any suggestion or solution for my data.&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class="branch"&gt;&amp;nbsp;&lt;/DIV&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>Fri, 14 Dec 2018 17:55:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Probit-analysis-for-LD50-calculation/m-p/521587#M73419</guid>
      <dc:creator>Charlie</dc:creator>
      <dc:date>2018-12-14T17:55:35Z</dc:date>
    </item>
    <item>
      <title>Re: Probit analysis for LD50 calculation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Probit-analysis-for-LD50-calculation/m-p/521647#M73423</link>
      <description>&lt;P&gt;Look at the (traditional graphics) graph produced by :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data B;
input dose total dead;
cards;
0.64 12 9
0.8 12 10
1 12 8
1.25 12 9
1.56 12 9
1.95 12 8
;

proc probit data=B log10 plot=none;
model dead / total = dose / d=logistic  InverseCL(prob=0.1 to 0.9 by 0.1);
predpplot vref=0.5;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PredPPlot.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/25710i8FAE3701F0530567/image-size/large?v=v2&amp;amp;px=999" role="button" title="PredPPlot.png" alt="PredPPlot.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;LD50 is so far from the data range and the confidence interval so large that they would be meaningless.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Dec 2018 20:23:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Probit-analysis-for-LD50-calculation/m-p/521647#M73423</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2018-12-14T20:23:42Z</dc:date>
    </item>
    <item>
      <title>Re: Probit analysis for LD50 calculation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Probit-analysis-for-LD50-calculation/m-p/522776#M73449</link>
      <description>&lt;P&gt;Hi, PG&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your reply, it really resolves my doubt.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Charlie&lt;/P&gt;</description>
      <pubDate>Thu, 20 Dec 2018 03:19:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Probit-analysis-for-LD50-calculation/m-p/522776#M73449</guid>
      <dc:creator>Charlie</dc:creator>
      <dc:date>2018-12-20T03:19:40Z</dc:date>
    </item>
  </channel>
</rss>

