<?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: seed? proc mi ? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/seed-proc-mi/m-p/454462#M114862</link>
    <description>&lt;P&gt;You can specify&amp;nbsp; any integer between 1 and 2 billion, such as&lt;/P&gt;
&lt;P&gt;seed=12345&lt;/P&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;P&gt;seed=&amp;lt;your telephone&amp;nbsp; number&amp;gt;&lt;/P&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;P&gt;seed=938324751&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For details, see &lt;A href="https://blogs.sas.com/content/iml/2017/06/01/choose-seed-random-number.html" target="_self"&gt;"How to choose a seed for generating random numbers"&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 16 Apr 2018 15:18:56 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2018-04-16T15:18:56Z</dc:date>
    <item>
      <title>seed? proc mi ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/seed-proc-mi/m-p/454167#M114800</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc mi data=auto2 seed=???out=auto_nomiss nimpute=1;
class doors cylinders fuel_type;
fcs reg(nlosses bore stroke horsepower peak_rpm/details) logistic(doors=cylinders fuel_type cylinders*fuel_type) ;
var  nlosses  bore stroke horsepower peak_rpm doors cylinders fuel_type;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;where is seed ?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 14 Apr 2018 17:40:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/seed-proc-mi/m-p/454167#M114800</guid>
      <dc:creator>michshoot</dc:creator>
      <dc:date>2018-04-14T17:40:15Z</dc:date>
    </item>
    <item>
      <title>Re: seed? proc mi ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/seed-proc-mi/m-p/454195#M114803</link>
      <description>&lt;P&gt;You didn't specify it, so there's no seed. I'm confused as to the question here.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Seed = ????&lt;/STRONG&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN class=" AAterm "&gt;SEED=&lt;SPAN class=" AAargument"&gt;number&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;A class="indexterm" name="statug.mi.a0000000038" target="_blank"&gt;&lt;/A&gt;&lt;A class="indexterm" name="statug.mi.a0000000039" target="_blank"&gt;&lt;/A&gt;&lt;A class="indexterm" name="statug.mi.a0000000040" target="_blank"&gt;&lt;/A&gt;&lt;A class="indexterm" name="statug.mi.a000000004001" target="_blank"&gt;&lt;/A&gt;specifies a positive integer to start the pseudo-random number generator. The default is a value generated from reading the time of day from the computer’s clock. However, in order to duplicate the results under identical situations, you must use the same value of the seed explicitly in subsequent runs of the MI procedure.&lt;/P&gt;
&lt;P&gt;The seed information is displayed in the "Model Information" table so that the results can be reproduced by specifying this seed with the SEED= option. You need to specify the same seed number in the future to reproduce the results.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is any number you choose, there's no specific requirement for it to be anything. The purpose is to allow you to replicate the results to test as you go through. It's hard to test code with random results if they're constantly changing.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/184864"&gt;@michshoot&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc mi data=auto2 seed=???out=auto_nomiss nimpute=1;
class doors cylinders fuel_type;
fcs reg(nlosses bore stroke horsepower peak_rpm/details) logistic(doors=cylinders fuel_type cylinders*fuel_type) ;
var  nlosses  bore stroke horsepower peak_rpm doors cylinders fuel_type;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;where is seed ?&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 14 Apr 2018 19:16:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/seed-proc-mi/m-p/454195#M114803</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-04-14T19:16:28Z</dc:date>
    </item>
    <item>
      <title>Re: seed? proc mi ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/seed-proc-mi/m-p/454462#M114862</link>
      <description>&lt;P&gt;You can specify&amp;nbsp; any integer between 1 and 2 billion, such as&lt;/P&gt;
&lt;P&gt;seed=12345&lt;/P&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;P&gt;seed=&amp;lt;your telephone&amp;nbsp; number&amp;gt;&lt;/P&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;P&gt;seed=938324751&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For details, see &lt;A href="https://blogs.sas.com/content/iml/2017/06/01/choose-seed-random-number.html" target="_self"&gt;"How to choose a seed for generating random numbers"&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Apr 2018 15:18:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/seed-proc-mi/m-p/454462#M114862</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2018-04-16T15:18:56Z</dc:date>
    </item>
  </channel>
</rss>

