<?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: SAS slow operation for Multiple cross-tabulations for bootstrap-based frequency in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-slow-operation-for-Multiple-cross-tabulations-for-bootstrap/m-p/715863#M221148</link>
    <description>&lt;P&gt;Reeza. My SAS is on network drive. It's for my work and I must use the network and work computer, no other choice. Thanks.&lt;/P&gt;</description>
    <pubDate>Mon, 01 Feb 2021 18:50:38 GMT</pubDate>
    <dc:creator>mandan414</dc:creator>
    <dc:date>2021-02-01T18:50:38Z</dc:date>
    <item>
      <title>SAS slow operation for Multiple cross-tabulations for bootstrap-based frequency</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-slow-operation-for-Multiple-cross-tabulations-for-bootstrap/m-p/715847#M221140</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm operating cross tabulations like below:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN&gt;proc&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt; &lt;STRONG&gt;surveyfreq&lt;/STRONG&gt; data=mydata varmethod=BRR;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&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; tables Var1 * Var2 *&amp;nbsp;Var3 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Var1 * Var2 *&amp;nbsp;Var4 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; Var1 * Var2 *&amp;nbsp;Var5&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ………………&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ……………..&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ……………..&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Var1 * Var2 *&amp;nbsp;Var9&amp;nbsp;/&amp;nbsp;row cl nofreq nowt nocellpercent nototal; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&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; repweights BSW1-BSW1000;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&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; weight&amp;nbsp; weight_var;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN&gt;run&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Var1 has 5 values, var2 has 2 values and var3 or var 4...… can have from 3 to 6 values. SAS operation is really slow for this. I tried only one table &amp;nbsp;(tables Var1 * Var2 *&amp;nbsp;Var3 ) with 2 bootstrap weight (BSW1-BSW2) and it took SAS 1.5mins to complete it. Any suggestions? &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you so much. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Feb 2021 18:15:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-slow-operation-for-Multiple-cross-tabulations-for-bootstrap/m-p/715847#M221140</guid>
      <dc:creator>mandan414</dc:creator>
      <dc:date>2021-02-01T18:15:10Z</dc:date>
    </item>
    <item>
      <title>Re: SAS slow operation for Multiple cross-tabulations for bootstrap-based frequency</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-slow-operation-for-Multiple-cross-tabulations-for-bootstrap/m-p/715858#M221144</link>
      <description>&lt;P&gt;How many records are involved in this data set?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Feb 2021 18:40:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-slow-operation-for-Multiple-cross-tabulations-for-bootstrap/m-p/715858#M221144</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-02-01T18:40:08Z</dc:date>
    </item>
    <item>
      <title>Re: SAS slow operation for Multiple cross-tabulations for bootstrap-based frequency</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-slow-operation-for-Multiple-cross-tabulations-for-bootstrap/m-p/715860#M221145</link>
      <description>&lt;P&gt;Above 100,000 records. Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 01 Feb 2021 18:42:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-slow-operation-for-Multiple-cross-tabulations-for-bootstrap/m-p/715860#M221145</guid>
      <dc:creator>mandan414</dc:creator>
      <dc:date>2021-02-01T18:42:35Z</dc:date>
    </item>
    <item>
      <title>Re: SAS slow operation for Multiple cross-tabulations for bootstrap-based frequency</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-slow-operation-for-Multiple-cross-tabulations-for-bootstrap/m-p/715862#M221147</link>
      <description>Is your table local or on a network drive? Have you tried loading the file with the SASFILE command?&lt;BR /&gt;I'm assuming you have decent RAM as well, if you're using SAS University Edition the default settings are low.</description>
      <pubDate>Mon, 01 Feb 2021 18:46:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-slow-operation-for-Multiple-cross-tabulations-for-bootstrap/m-p/715862#M221147</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-02-01T18:46:05Z</dc:date>
    </item>
    <item>
      <title>Re: SAS slow operation for Multiple cross-tabulations for bootstrap-based frequency</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-slow-operation-for-Multiple-cross-tabulations-for-bootstrap/m-p/715863#M221148</link>
      <description>&lt;P&gt;Reeza. My SAS is on network drive. It's for my work and I must use the network and work computer, no other choice. Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Feb 2021 18:50:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-slow-operation-for-Multiple-cross-tabulations-for-bootstrap/m-p/715863#M221148</guid>
      <dc:creator>mandan414</dc:creator>
      <dc:date>2021-02-01T18:50:38Z</dc:date>
    </item>
    <item>
      <title>Re: SAS slow operation for Multiple cross-tabulations for bootstrap-based frequency</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-slow-operation-for-Multiple-cross-tabulations-for-bootstrap/m-p/715870#M221152</link>
      <description>&lt;P&gt;Where does your SAS WORK library point to? I'm hoping it is your local drive. If so run a test using data copied to WORK to see if that improves performance.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Feb 2021 19:15:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-slow-operation-for-Multiple-cross-tabulations-for-bootstrap/m-p/715870#M221152</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2021-02-01T19:15:01Z</dc:date>
    </item>
    <item>
      <title>Re: SAS slow operation for Multiple cross-tabulations for bootstrap-based frequency</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-slow-operation-for-Multiple-cross-tabulations-for-bootstrap/m-p/716153#M221284</link>
      <description>&lt;P&gt;SAS work library is on the network. Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2021 17:47:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-slow-operation-for-Multiple-cross-tabulations-for-bootstrap/m-p/716153#M221284</guid>
      <dc:creator>mandan414</dc:creator>
      <dc:date>2021-02-02T17:47:23Z</dc:date>
    </item>
    <item>
      <title>Re: SAS slow operation for Multiple cross-tabulations for bootstrap-based frequency</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-slow-operation-for-Multiple-cross-tabulations-for-bootstrap/m-p/716228#M221312</link>
      <description>Not to be a pest and repeat myself again, but have you tried SASFILE?&lt;BR /&gt;I would assume a bootstrap option would require many reads so it may help.</description>
      <pubDate>Tue, 02 Feb 2021 21:13:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-slow-operation-for-Multiple-cross-tabulations-for-bootstrap/m-p/716228#M221312</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-02-02T21:13:25Z</dc:date>
    </item>
    <item>
      <title>Re: SAS slow operation for Multiple cross-tabulations for bootstrap-based frequency</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-slow-operation-for-Multiple-cross-tabulations-for-bootstrap/m-p/716323#M221357</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/274426"&gt;@mandan414&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;SAS work library is on the network. Thanks.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This is ok, if - and only if - sas runs on a server. If sas is installed on your computer, having work on a network share is, kindly put, a really bad idea.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Feb 2021 06:13:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-slow-operation-for-Multiple-cross-tabulations-for-bootstrap/m-p/716323#M221357</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2021-02-03T06:13:58Z</dc:date>
    </item>
    <item>
      <title>Re: SAS slow operation for Multiple cross-tabulations for bootstrap-based frequency</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-slow-operation-for-Multiple-cross-tabulations-for-bootstrap/m-p/716406#M221409</link>
      <description>&lt;P&gt;Hi Reeza,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried it, it's super! Much much faster! Although, I still don't know what SASFILE exactly does. I'm going to study about it. Thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 03 Feb 2021 12:35:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-slow-operation-for-Multiple-cross-tabulations-for-bootstrap/m-p/716406#M221409</guid>
      <dc:creator>mandan414</dc:creator>
      <dc:date>2021-02-03T12:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: SAS slow operation for Multiple cross-tabulations for bootstrap-based frequency</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-slow-operation-for-Multiple-cross-tabulations-for-bootstrap/m-p/716407#M221410</link>
      <description>&lt;P&gt;I don't quite understand it. Could you explain it a little more? Thank you for your time.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Feb 2021 12:37:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-slow-operation-for-Multiple-cross-tabulations-for-bootstrap/m-p/716407#M221410</guid>
      <dc:creator>mandan414</dc:creator>
      <dc:date>2021-02-03T12:37:43Z</dc:date>
    </item>
    <item>
      <title>Re: SAS slow operation for Multiple cross-tabulations for bootstrap-based frequency</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-slow-operation-for-Multiple-cross-tabulations-for-bootstrap/m-p/716460#M221429</link>
      <description>&lt;P&gt;If you have a local installation of sas any network-traffic will, most likely, slow down the execution of you sas job. So using local drives is highly recommended.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Feb 2021 14:20:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-slow-operation-for-Multiple-cross-tabulations-for-bootstrap/m-p/716460#M221429</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2021-02-03T14:20:57Z</dc:date>
    </item>
    <item>
      <title>Re: SAS slow operation for Multiple cross-tabulations for bootstrap-based frequency</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-slow-operation-for-Multiple-cross-tabulations-for-bootstrap/m-p/716535#M221469</link>
      <description>It loads the data into RAM so it's not being re-read constantly so it should speed things up significantly when there are multiple reads of the same file and you're using it for data intensive calculations. &lt;BR /&gt;</description>
      <pubDate>Wed, 03 Feb 2021 16:49:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-slow-operation-for-Multiple-cross-tabulations-for-bootstrap/m-p/716535#M221469</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-02-03T16:49:47Z</dc:date>
    </item>
  </channel>
</rss>

