<?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: Initial seed for clustering in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Initial-seed-for-clustering/m-p/241534#M55700</link>
    <description>&lt;P&gt;I couldn't follow the link you provided.&lt;/P&gt;
&lt;P&gt;Try running a zero iteration clustering step to generate reusable seeds&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc fastclus data=sashelp.iris maxc=5 maxiter=0 outseed=seeds;
   var SepalLength SepalWidth PetalLength PetalWidth;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and then reuse those seeds in subsequent clustering runs&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc fastclus data=sashelp.iris maxc=3 maxiter=100 seed=seeds;
   var SepalLength SepalWidth PetalLength PetalWidth;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 03 Jan 2016 05:52:36 GMT</pubDate>
    <dc:creator>PGStats</dc:creator>
    <dc:date>2016-01-03T05:52:36Z</dc:date>
    <item>
      <title>Initial seed for clustering</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Initial-seed-for-clustering/m-p/241512#M55692</link>
      <description>&lt;P&gt;Hi all,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Can you please explain how the initial seed can be obtained so that clustering can be repeated every run using the FASTCLUS and HPCLUS procedures (&lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/Tip-K-means-clustering-in-SAS-comparing-PROC-FASTCLUS-and-PROC/ta-p/221369)" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/Tip-K-means-clustering-in-SAS-comparing-PROC-FASTCLUS-and-PROC/ta-p/221369)&lt;/A&gt; ?&lt;BR /&gt;&lt;BR /&gt;Many thanks.&lt;/P&gt;</description>
      <pubDate>Sat, 02 Jan 2016 21:23:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Initial-seed-for-clustering/m-p/241512#M55692</guid>
      <dc:creator>ria_tran</dc:creator>
      <dc:date>2016-01-02T21:23:41Z</dc:date>
    </item>
    <item>
      <title>Re: Initial seed for clustering</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Initial-seed-for-clustering/m-p/241534#M55700</link>
      <description>&lt;P&gt;I couldn't follow the link you provided.&lt;/P&gt;
&lt;P&gt;Try running a zero iteration clustering step to generate reusable seeds&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc fastclus data=sashelp.iris maxc=5 maxiter=0 outseed=seeds;
   var SepalLength SepalWidth PetalLength PetalWidth;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and then reuse those seeds in subsequent clustering runs&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc fastclus data=sashelp.iris maxc=3 maxiter=100 seed=seeds;
   var SepalLength SepalWidth PetalLength PetalWidth;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 03 Jan 2016 05:52:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Initial-seed-for-clustering/m-p/241534#M55700</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2016-01-03T05:52:36Z</dc:date>
    </item>
    <item>
      <title>Re: Initial seed for clustering</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Initial-seed-for-clustering/m-p/241553#M55702</link>
      <description>&lt;P&gt;Hi PGStats,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thank you for your response. The link is:&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/Tip-K-means-clustering-in-SAS-comparing-PROC-FASTCLUS-and-PROC/ta-p/221369" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/Tip-K-means-clustering-in-SAS-comparing-PROC-FASTCLUS-and-PROC/ta-p/221369&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I was wondering if there was a way to derive the optimal seed for the FASTCLUS and HPCLUS procedures combined, as demonstrated in part 3 of the link.&lt;BR /&gt;&lt;BR /&gt;Many thanks,&amp;nbsp;&lt;BR /&gt;Ria.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 03 Jan 2016 14:23:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Initial-seed-for-clustering/m-p/241553#M55702</guid>
      <dc:creator>ria_tran</dc:creator>
      <dc:date>2016-01-03T14:23:52Z</dc:date>
    </item>
    <item>
      <title>Re: Initial seed for clustering</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Initial-seed-for-clustering/m-p/241567#M55704</link>
      <description>&lt;P&gt;I don't have access to EM. But beware of this: The word &lt;EM&gt;seed&lt;/EM&gt; has different meanings for FASTCLUS and HPCLUS. For the former it is a set of cluster centroids. For the later it is a starting number for pseudo-random number generation.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Part 3 of the link proposes a way to select the &lt;EM&gt;optimal&lt;/EM&gt; number of clusters (&lt;EM&gt;k&lt;/EM&gt;) using HPCLUS and then to feed that number into FASTCLUS to get better clusters. In my view, it is only worth doing that for large problems. For smaller problems, running FASTCLUS reperatedly over a range of &lt;EM&gt;k&lt;/EM&gt;-values does the job.&lt;/P&gt;</description>
      <pubDate>Sun, 03 Jan 2016 19:49:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Initial-seed-for-clustering/m-p/241567#M55704</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2016-01-03T19:49:09Z</dc:date>
    </item>
  </channel>
</rss>

