<?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: My proc freq is running forever though the input dataset has only 4 observations. in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682253#M32788</link>
    <description>DATA COUNTS; input TRT RESPONSE COUNT;&lt;BR /&gt;cards;&lt;BR /&gt;1 1 12&lt;BR /&gt;1 2 2&lt;BR /&gt;2 1 7&lt;BR /&gt;2 2 9&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;ODS select none;&lt;BR /&gt;&lt;BR /&gt;PROC FREQ ;&lt;BR /&gt;WEIGHT COUNT;&lt;BR /&gt;EXACT RELRISK RISKDIFF;&lt;BR /&gt;TABLE TRT*RESPONSE/riskdiff;&lt;BR /&gt;ods output RelRisk1ExactCL=relrisk;&lt;BR /&gt;ods output RiskDiffCol1=riskdiff;&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;ODS select all;&lt;BR /&gt;</description>
    <pubDate>Tue, 08 Sep 2020 13:56:23 GMT</pubDate>
    <dc:creator>Anki9</dc:creator>
    <dc:date>2020-09-08T13:56:23Z</dc:date>
    <item>
      <title>My proc freq is running forever though the input dataset has only 4 observations.</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682206#M32781</link>
      <description />
      <pubDate>Tue, 08 Sep 2020 11:38:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682206#M32781</guid>
      <dc:creator>Anki9</dc:creator>
      <dc:date>2020-09-08T11:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: My proc freq is running forever though the input dataset has only 4 observations.</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682231#M32783</link>
      <description>&lt;P&gt;This may be as simple as forgetting the semi-colon on your run; statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Tue, 08 Sep 2020 12:39:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682231#M32783</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-09-08T12:39:42Z</dc:date>
    </item>
    <item>
      <title>Re: My proc freq is running forever though the input dataset has only 4 observations.</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682235#M32784</link>
      <description>&lt;P&gt;Or, you don't even have a RUN; statement, this would cause the appearance of "running forever".&lt;/P&gt;</description>
      <pubDate>Tue, 08 Sep 2020 12:54:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682235#M32784</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-09-08T12:54:40Z</dc:date>
    </item>
    <item>
      <title>Re: My proc freq is running forever though the input dataset has only 4 observations.</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682242#M32785</link>
      <description>&lt;P&gt;I have a semi-colon on my run; statement.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Sep 2020 13:26:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682242#M32785</guid>
      <dc:creator>Anki9</dc:creator>
      <dc:date>2020-09-08T13:26:12Z</dc:date>
    </item>
    <item>
      <title>Re: My proc freq is running forever though the input dataset has only 4 observations.</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682245#M32786</link>
      <description>&lt;P&gt;Show us the full code of your PROC FREQ. Since the dataset has only 4 observations, please show us the data as well.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Sep 2020 13:29:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682245#M32786</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-09-08T13:29:55Z</dc:date>
    </item>
    <item>
      <title>Re: My proc freq is running forever though the input dataset has only 4 observations.</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682253#M32788</link>
      <description>DATA COUNTS; input TRT RESPONSE COUNT;&lt;BR /&gt;cards;&lt;BR /&gt;1 1 12&lt;BR /&gt;1 2 2&lt;BR /&gt;2 1 7&lt;BR /&gt;2 2 9&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;ODS select none;&lt;BR /&gt;&lt;BR /&gt;PROC FREQ ;&lt;BR /&gt;WEIGHT COUNT;&lt;BR /&gt;EXACT RELRISK RISKDIFF;&lt;BR /&gt;TABLE TRT*RESPONSE/riskdiff;&lt;BR /&gt;ods output RelRisk1ExactCL=relrisk;&lt;BR /&gt;ods output RiskDiffCol1=riskdiff;&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;ODS select all;&lt;BR /&gt;</description>
      <pubDate>Tue, 08 Sep 2020 13:56:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682253#M32788</guid>
      <dc:creator>Anki9</dc:creator>
      <dc:date>2020-09-08T13:56:23Z</dc:date>
    </item>
    <item>
      <title>Re: My proc freq is running forever though the input dataset has only 4 observations.</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682255#M32789</link>
      <description>&lt;P&gt;I don't know why it is taking so long. Your code runs PROC FREQ in under 5 seconds on my computer.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Sep 2020 14:06:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682255#M32789</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-09-08T14:06:07Z</dc:date>
    </item>
    <item>
      <title>Re: My proc freq is running forever though the input dataset has only 4 observations.</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682260#M32790</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Or, you don't even have a RUN; statement, this would cause the appearance of "running forever".&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Or the code has the RUN; but was not submitted such as highlighting and submitting only the lines above the Run;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Sep 2020 14:38:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682260#M32790</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-09-08T14:38:23Z</dc:date>
    </item>
    <item>
      <title>Re: My proc freq is running forever though the input dataset has only 4 observations.</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682268#M32791</link>
      <description>&lt;PRE&gt; 74         DATA COUNTS; input TRT RESPONSE COUNT;
 75         cards;
 
 NOTE: The data set WORK.COUNTS has 4 observations and 3 variables.
 NOTE:  Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit):
       real time           0.00 seconds
       cpu time            0.00 seconds
       
 
 80         ;
 81         
 82         ODS select none;
 83         
 84         PROC FREQ ;
 85         WEIGHT COUNT;
 86         EXACT RELRISK RISKDIFF;
 87         TABLE TRT*RESPONSE/riskdiff;
 88         ods output RelRisk1ExactCL=relrisk;
 89         ods output RiskDiffCol1=riskdiff;
 90         RUN;
 
 NOTE: The default method for EXACT RELRISK is now METHOD=SCORE. To use the previous default method (in SAS/STAT 14.2 and earlier 
       releases), you can specify EXACT RELRISK(METHOD=NOSCORE).
 NOTE: The default method for EXACT RISKDIFF is now METHOD=SCORE. To use the previous default method (in SAS/STAT 14.2 and earlier 
       releases), you can specify EXACT RISKDIFF(METHOD=NOSCORE).
 NOTE: The data set WORK.RISKDIFF has 4 observations and 9 variables.
 NOTE: The data set WORK.RELRISK has 9 observations and 5 variables.
 NOTE: There were 4 observations read from the data set WORK.COUNTS.
 NOTE:  Verwendet wurde: PROZEDUR FREQ - (Gesamtverarbeitungszeit):
       real time           3.64 seconds
       cpu time            3.61 seconds
&lt;/PRE&gt;
&lt;P&gt;University Edition on a 2015 MacBook Pro.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Sep 2020 15:04:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682268#M32791</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-09-08T15:04:45Z</dc:date>
    </item>
    <item>
      <title>Re: My proc freq is running forever though the input dataset has only 4 observations.</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682272#M32792</link>
      <description>&lt;P&gt;Here is my time on this one (Windows 10, SAS/STAT 14.1)&lt;/P&gt;
&lt;PRE&gt;1    DATA COUNTS; input TRT RESPONSE COUNT;
2    cards;

NOTE: The data set WORK.COUNTS has 4 observations and 3 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds


7    ;
8
9    ODS select none;
10
11   PROC FREQ ;
12   WEIGHT COUNT;
13   EXACT RELRISK RISKDIFF;
14   TABLE TRT*RESPONSE/riskdiff;
15   ods output RelRisk1ExactCL=relrisk;
NOTE: Writing HTML Body file: sashtml.htm
16   ods output RiskDiffCol1=riskdiff;
17   RUN;

NOTE: The data set WORK.RISKDIFF has 4 observations and 9 variables.
NOTE: The data set WORK.RELRISK has 9 observations and 5 variables.
NOTE: There were 4 observations read from the data set WORK.COUNTS.
NOTE: PROCEDURE FREQ used (Total process time):
      real time           0.98 seconds
      cpu time            0.70 seconds


18
19   ODS select all;
&lt;/PRE&gt;
&lt;P&gt;Less than a second in total real time.&amp;nbsp; That is why I suspect what&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp;came up with.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Tue, 08 Sep 2020 15:14:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682272#M32792</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-09-08T15:14:00Z</dc:date>
    </item>
    <item>
      <title>Re: My proc freq is running forever though the input dataset has only 4 observations.</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682287#M32793</link>
      <description>Restart SAS and see if the problem persists. If it does, restart SAS again and try the most basic code (example below) and see if it works. &lt;BR /&gt;&lt;BR /&gt;proc means data=sashelp.class;run;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 08 Sep 2020 15:52:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682287#M32793</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-09-08T15:52:27Z</dc:date>
    </item>
    <item>
      <title>Re: My proc freq is running forever though the input dataset has only 4 observations.</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682616#M32816</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;Anki9&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;my&amp;nbsp;dataset:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;trt&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; response&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;count&lt;/P&gt;&lt;P&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5&lt;/P&gt;&lt;P&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 296&lt;/P&gt;&lt;P&gt;2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&lt;/P&gt;&lt;P&gt;2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 150&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;all 3 variables are format best12.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;my procedure is below which is&amp;nbsp;running forever:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT size="1" color="#0000ff"&gt;ODS&lt;/FONT&gt; &lt;FONT size="1" color="#0000ff"&gt;select&lt;/FONT&gt;&lt;FONT size="1"&gt; none;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT size="1" color="#0000ff"&gt;PROC&lt;/FONT&gt; &lt;FONT size="1" color="#0000ff"&gt;FREQ&lt;/FONT&gt;&lt;FONT size="1"&gt; data=counts;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT size="1" color="#0000ff"&gt;WEIGHT&lt;/FONT&gt;&lt;FONT size="1"&gt; count;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT size="1" color="#0000ff"&gt;EXACT&lt;/FONT&gt;&lt;FONT size="1"&gt; RELRISK RISKDIFF;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;TABLE trt*response/riskdiff;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT size="1" color="#0000ff"&gt;ods&lt;/FONT&gt; &lt;FONT size="1" color="#0000ff"&gt;output&lt;/FONT&gt;&lt;FONT size="1"&gt; RelRisk1ExactCL=relrisk;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT size="1" color="#0000ff"&gt;ods&lt;/FONT&gt; &lt;FONT size="1" color="#0000ff"&gt;output&lt;/FONT&gt;&lt;FONT size="1"&gt; RiskDiffCol1=riskdiff;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT size="1" color="#0000ff"&gt;RUN&lt;/FONT&gt;&lt;FONT size="1"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT size="1" color="#0000ff"&gt;ODS&lt;/FONT&gt; &lt;FONT size="1" color="#0000ff"&gt;select&lt;/FONT&gt;&lt;FONT size="1"&gt; all;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2020 12:49:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682616#M32816</guid>
      <dc:creator>Anki9</dc:creator>
      <dc:date>2020-09-09T12:49:10Z</dc:date>
    </item>
    <item>
      <title>Re: My proc freq is running forever though the input dataset has only 4 observations.</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682621#M32817</link>
      <description>&lt;P&gt;So you are not just doing simple counts.&amp;nbsp; You have asked for it to do exact statistical calculations.&lt;/P&gt;
&lt;P&gt;You might want to share your data with SAS support and see if your particular data combination is confusing that algorithm and putting into some type of infinite loop.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2020 13:04:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682621#M32817</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-09-09T13:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: My proc freq is running forever though the input dataset has only 4 observations.</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682629#M32818</link>
      <description>&lt;P&gt;From my log (again - Windows 10, SAS/STAT 14.1)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;42   PROC FREQ data=counts;
43
44   WEIGHT count;
45
46   EXACT RELRISK RISKDIFF;
47
48
49
50   TABLE trt*response/riskdiff;
51
52   ods output RelRisk1ExactCL=relrisk;
53
54   ods output RiskDiffCol1=riskdiff;
55
56   RUN;

NOTE: Writing HTML Body file: sashtml1.htm
WARNING: Computing exact confidence limits for this problem may require much time and memory.
         Press the system interrupt key to terminate exact computations.
NOTE: The data set WORK.RISKDIFF has 4 observations and 9 variables.
NOTE: The data set WORK.RELRISK has 9 observations and 5 variables.
NOTE: There were 4 observations read from the data set WORK.COUNTS.
NOTE: PROCEDURE FREQ used (Total process time):
      real time           27.77 seconds
      cpu time            27.34 seconds

&lt;/PRE&gt;
&lt;P&gt;Again, under 30 seconds.&amp;nbsp; At least the log gives a warning about time and memory.&amp;nbsp; This may be a case where you don't have adequate memory set aside for the exact algorithm to enumerate possible outcomes with fixed marginal totals.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2020 13:29:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682629#M32818</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-09-09T13:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: My proc freq is running forever though the input dataset has only 4 observations.</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682632#M32819</link>
      <description>Thank you so much for your quick solution.</description>
      <pubDate>Wed, 09 Sep 2020 13:40:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/My-proc-freq-is-running-forever-though-the-input-dataset-has/m-p/682632#M32819</guid>
      <dc:creator>Anki9</dc:creator>
      <dc:date>2020-09-09T13:40:49Z</dc:date>
    </item>
  </channel>
</rss>

