<?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: Insufficiency memory error in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Insufficiency-memory-error/m-p/456070#M70066</link>
    <description>&lt;P&gt;Thanks for reply! Yes, I use NOPRINT in my code.&amp;nbsp; And&amp;nbsp; my code is really easy.&amp;nbsp; So I don't know what to do. Seems this SAS procedure is the best solution for my need but final sas7bdat-file&amp;nbsp; is unreally big for my pc.&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;My code is here.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc inbreed data=example1 outcov=A covar matrix NOPRINT;&lt;BR /&gt;var&amp;nbsp;individ&amp;nbsp;mother&amp;nbsp;father;&lt;BR /&gt;run;&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;&lt;P&gt;/*&lt;SPAN&gt;example1 is 1.7M&amp;nbsp; x&amp;nbsp; 3 table&lt;/SPAN&gt;*/&lt;/P&gt;</description>
    <pubDate>Fri, 20 Apr 2018 20:20:50 GMT</pubDate>
    <dc:creator>kirillschmidt</dc:creator>
    <dc:date>2018-04-20T20:20:50Z</dc:date>
    <item>
      <title>Insufficiency memory error</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Insufficiency-memory-error/m-p/456025#M70059</link>
      <description>&lt;P&gt;Hello!&amp;nbsp;&lt;BR /&gt;I have a small problem with proc inbreed.&amp;nbsp;&lt;BR /&gt;I need to calculate inbreeding coefficient for 1,700,000 individs. But my computer stopped processing because of insufficient memory.&amp;nbsp;I tried to do it for 20,000 individs and SAS-file was about 3gb.Why does it take so much memory?&amp;nbsp; Maybe I do something wrong.&amp;nbsp;Are&amp;nbsp;there any ideas how to fix/solve it? Thank you! And sorry for stupid questions.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Apr 2018 18:32:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Insufficiency-memory-error/m-p/456025#M70059</guid>
      <dc:creator>kirillschmidt</dc:creator>
      <dc:date>2018-04-20T18:32:17Z</dc:date>
    </item>
    <item>
      <title>Re: Insufficiency memory error</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Insufficiency-memory-error/m-p/456047#M70063</link>
      <description>&lt;P&gt;You might try the NOPRINT option and direct the output to a dataset using the OUTCOV= option. Some times these memory issues come from massive amounts of output sent to a results window. Then use proc print or other option to examine the pieces you are interested in from the output set.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also the specific options involved may increase memory needs. It might help to show your code for someone to suggest efficiency changes.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Apr 2018 19:17:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Insufficiency-memory-error/m-p/456047#M70063</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-04-20T19:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: Insufficiency memory error</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Insufficiency-memory-error/m-p/456070#M70066</link>
      <description>&lt;P&gt;Thanks for reply! Yes, I use NOPRINT in my code.&amp;nbsp; And&amp;nbsp; my code is really easy.&amp;nbsp; So I don't know what to do. Seems this SAS procedure is the best solution for my need but final sas7bdat-file&amp;nbsp; is unreally big for my pc.&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;My code is here.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc inbreed data=example1 outcov=A covar matrix NOPRINT;&lt;BR /&gt;var&amp;nbsp;individ&amp;nbsp;mother&amp;nbsp;father;&lt;BR /&gt;run;&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;&lt;P&gt;/*&lt;SPAN&gt;example1 is 1.7M&amp;nbsp; x&amp;nbsp; 3 table&lt;/SPAN&gt;*/&lt;/P&gt;</description>
      <pubDate>Fri, 20 Apr 2018 20:20:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Insufficiency-memory-error/m-p/456070#M70066</guid>
      <dc:creator>kirillschmidt</dc:creator>
      <dc:date>2018-04-20T20:20:50Z</dc:date>
    </item>
    <item>
      <title>Re: Insufficiency memory error</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Insufficiency-memory-error/m-p/456105#M70068</link>
      <description>&lt;P&gt;Did you happen to note how many variables are in the OUTCOV&amp;nbsp;data when you ran this with 20000 records? Then consider the 1.7M.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You might consider, if practical, adding a generation or similar class variable to subset the data a bit.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have repeats of mother father reduce to a single one. Your current code is basically assuming everyone is in the same generation so repeats of family members in the same generation don't add much information while adding many more columns. The individuals would have the same relationship to external-to-the-family members.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Apr 2018 22:14:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Insufficiency-memory-error/m-p/456105#M70068</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-04-20T22:14:02Z</dc:date>
    </item>
  </channel>
</rss>

