<?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: controlling seed value in ArcGIS GeoStatistical Analyst Questions</title>
    <link>https://community.esri.com/t5/arcgis-geostatistical-analyst-questions/controlling-seed-value/m-p/591762#M1327</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kim&lt;/P&gt;&lt;P&gt;Changing the seed should not have much of an effect, The value of the cells in the probability raster will have the most effect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 May 2017 19:33:23 GMT</pubDate>
    <dc:creator>SteveLynch</dc:creator>
    <dc:date>2017-05-09T19:33:23Z</dc:date>
    <item>
      <title>controlling seed value</title>
      <link>https://community.esri.com/t5/arcgis-geostatistical-analyst-questions/controlling-seed-value/m-p/591758#M1323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am using create spatially balanced points tool. arcgis help says this tool uses&amp;nbsp;&lt;SPAN style="color: #4d4d4d; background-color: #fefefe;"&gt;a random number generator in its operation which can be controlled in&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A class="" href="http://pro.arcgis.com/en/pro-app/tool-reference/environment-settings/random-number-generator.htm" style="color: #007ac2; text-decoration: none;"&gt;Random number generator&lt;/A&gt;&lt;SPAN&gt; environment. how can i change the seed value from the default value and run this tool with the new seed value?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4d4d4d; background-color: #fefefe;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 May 2017 07:39:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geostatistical-analyst-questions/controlling-seed-value/m-p/591758#M1323</guid>
      <dc:creator>kimkarimi</dc:creator>
      <dc:date>2017-05-07T07:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: controlling seed value</title>
      <link>https://community.esri.com/t5/arcgis-geostatistical-analyst-questions/controlling-seed-value/m-p/591759#M1324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The seed value and the generator used is available through the dialog you linked, in the form of...&lt;/P&gt;&lt;PRE class="language-python line-numbers"&gt;&lt;CODE&gt;arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;randomGenerator &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"4 MERSENNE_TWISTER"&lt;/SPAN&gt;‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;either through code or the dialog.&amp;nbsp; Given there are 3 generators and you can specify the seed number as in the above example, what are you requiring beyond that?&lt;/P&gt;&lt;P&gt;Since it is an Environment Setting, set it within the Environments tab of the tools you are using which provide access to it, or code its generation&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 May 2017 12:25:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geostatistical-analyst-questions/controlling-seed-value/m-p/591759#M1324</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2017-05-07T12:25:49Z</dc:date>
    </item>
    <item>
      <title>Re: controlling seed value</title>
      <link>https://community.esri.com/t5/arcgis-geostatistical-analyst-questions/controlling-seed-value/m-p/591760#M1325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks Dan&lt;/P&gt;&lt;P&gt;i want to change the seed value to check how it affects the points that "create spatially balanced points" creates.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2017 15:49:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geostatistical-analyst-questions/controlling-seed-value/m-p/591760#M1325</guid>
      <dc:creator>kimkarimi</dc:creator>
      <dc:date>2017-05-09T15:49:58Z</dc:date>
    </item>
    <item>
      <title>Re: controlling seed value</title>
      <link>https://community.esri.com/t5/arcgis-geostatistical-analyst-questions/controlling-seed-value/m-p/591761#M1326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The seed value can then be used either through the arcpy interface, or directly through &lt;A href="https://docs.python.org/3/library/random.html"&gt;python&lt;/A&gt; or I often use numpy since it offers similar and companion distributions with replication should you need them ie&amp;nbsp;a = np.random.mtrand.RandomState(1).randint(0, 10, size=(N,2)) where N would be the number of point pairs... randint can be replaced as you see fit with alternates in the RandomState class.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2017 17:04:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geostatistical-analyst-questions/controlling-seed-value/m-p/591761#M1326</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2017-05-09T17:04:55Z</dc:date>
    </item>
    <item>
      <title>Re: controlling seed value</title>
      <link>https://community.esri.com/t5/arcgis-geostatistical-analyst-questions/controlling-seed-value/m-p/591762#M1327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kim&lt;/P&gt;&lt;P&gt;Changing the seed should not have much of an effect, The value of the cells in the probability raster will have the most effect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2017 19:33:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geostatistical-analyst-questions/controlling-seed-value/m-p/591762#M1327</guid>
      <dc:creator>SteveLynch</dc:creator>
      <dc:date>2017-05-09T19:33:23Z</dc:date>
    </item>
  </channel>
</rss>

