<?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 proc npar1way does not stop running in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/proc-npar1way-does-not-stop-running/m-p/811260#M39978</link>
    <description>&lt;P&gt;hi, not sure what is the issue here but for some reason the proc npar1way does not stop running&amp;nbsp;even with low number of obs. Any idea?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;below is a part of the final dataset:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;675 smp&lt;BR /&gt;515 smp&lt;BR /&gt;548 smp&lt;BR /&gt;599 smp&lt;BR /&gt;500 smp&lt;BR /&gt;715 smp&lt;BR /&gt;500 smp&lt;BR /&gt;0 pop&lt;BR /&gt;100 pop&lt;BR /&gt;666 pop&lt;BR /&gt;100 pop&lt;BR /&gt;752 pop&lt;BR /&gt;648 pop&lt;BR /&gt;500 pop&lt;BR /&gt;500 pop&lt;BR /&gt;100 pop&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data final;
set smp (obs=100) pop (obs=100);
run;

ods graphics on;
proc npar1way edf data=final;
class source;
var application_score;
exact ks;
run;
ods graphics off;&lt;/PRE&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>Tue, 03 May 2022 15:17:15 GMT</pubDate>
    <dc:creator>Toni2</dc:creator>
    <dc:date>2022-05-03T15:17:15Z</dc:date>
    <item>
      <title>proc npar1way does not stop running</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-npar1way-does-not-stop-running/m-p/811260#M39978</link>
      <description>&lt;P&gt;hi, not sure what is the issue here but for some reason the proc npar1way does not stop running&amp;nbsp;even with low number of obs. Any idea?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;below is a part of the final dataset:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;675 smp&lt;BR /&gt;515 smp&lt;BR /&gt;548 smp&lt;BR /&gt;599 smp&lt;BR /&gt;500 smp&lt;BR /&gt;715 smp&lt;BR /&gt;500 smp&lt;BR /&gt;0 pop&lt;BR /&gt;100 pop&lt;BR /&gt;666 pop&lt;BR /&gt;100 pop&lt;BR /&gt;752 pop&lt;BR /&gt;648 pop&lt;BR /&gt;500 pop&lt;BR /&gt;500 pop&lt;BR /&gt;100 pop&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data final;
set smp (obs=100) pop (obs=100);
run;

ods graphics on;
proc npar1way edf data=final;
class source;
var application_score;
exact ks;
run;
ods graphics off;&lt;/PRE&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>Tue, 03 May 2022 15:17:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-npar1way-does-not-stop-running/m-p/811260#M39978</guid>
      <dc:creator>Toni2</dc:creator>
      <dc:date>2022-05-03T15:17:15Z</dc:date>
    </item>
    <item>
      <title>Re: proc npar1way does not stop running</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-npar1way-does-not-stop-running/m-p/811264#M39981</link>
      <description>&lt;P&gt;What happens if you take the EXACT command out and run it?&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2022 15:39:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-npar1way-does-not-stop-running/m-p/811264#M39981</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-05-03T15:39:47Z</dc:date>
    </item>
    <item>
      <title>Re: proc npar1way does not stop running</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-npar1way-does-not-stop-running/m-p/811276#M39986</link>
      <description>&lt;P class="cs2654AE3A"&gt;&lt;SPAN class="cs4149222F"&gt;As you have observed, the EXACT statement can cause long run times in PROC NPAR1WAY.&amp;nbsp; &amp;nbsp;Adding the MC option to the EXACT statement&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="cs4149222F"&gt;requests a Monte Carlo estimate of the exact p-value. &amp;nbsp;This calculation can be a good compromise when the exact computations are too computationally intensive to wait for. With the MC option, the exact tests will not be computed.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs2654AE3A"&gt;&lt;SPAN class="cs4149222F"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2022 16:50:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-npar1way-does-not-stop-running/m-p/811276#M39986</guid>
      <dc:creator>tonya_sas</dc:creator>
      <dc:date>2022-05-03T16:50:16Z</dc:date>
    </item>
    <item>
      <title>Re: proc npar1way does not stop running</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-npar1way-does-not-stop-running/m-p/811325#M39987</link>
      <description>thanks, i removed the EXACT and works!</description>
      <pubDate>Tue, 03 May 2022 21:35:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-npar1way-does-not-stop-running/m-p/811325#M39987</guid>
      <dc:creator>Toni2</dc:creator>
      <dc:date>2022-05-03T21:35:27Z</dc:date>
    </item>
    <item>
      <title>Re: proc npar1way does not stop running</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-npar1way-does-not-stop-running/m-p/811326#M39988</link>
      <description>thanks &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Tue, 03 May 2022 21:36:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-npar1way-does-not-stop-running/m-p/811326#M39988</guid>
      <dc:creator>Toni2</dc:creator>
      <dc:date>2022-05-03T21:36:08Z</dc:date>
    </item>
  </channel>
</rss>

