<?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 Cluster analysis in SAS in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Cluster-analysis-in-SAS/m-p/569432#M28023</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to do cluster analysis in SAS and I am little bit confused. I know that first you have to normalised your data and choose appropriate distance matrix (for example Euclidean distance) and then you do your cluster analysis.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, in SAS it is not very clear. Most examples I saw dont use distance matrix, like in proc cluster or proc fastclus. Why?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;</description>
    <pubDate>Thu, 27 Jun 2019 14:04:05 GMT</pubDate>
    <dc:creator>viollete</dc:creator>
    <dc:date>2019-06-27T14:04:05Z</dc:date>
    <item>
      <title>Cluster analysis in SAS</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Cluster-analysis-in-SAS/m-p/569432#M28023</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to do cluster analysis in SAS and I am little bit confused. I know that first you have to normalised your data and choose appropriate distance matrix (for example Euclidean distance) and then you do your cluster analysis.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, in SAS it is not very clear. Most examples I saw dont use distance matrix, like in proc cluster or proc fastclus. Why?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jun 2019 14:04:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Cluster-analysis-in-SAS/m-p/569432#M28023</guid>
      <dc:creator>viollete</dc:creator>
      <dc:date>2019-06-27T14:04:05Z</dc:date>
    </item>
    <item>
      <title>Re: Cluster analysis in SAS</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Cluster-analysis-in-SAS/m-p/569531#M28025</link>
      <description>&lt;P&gt;PROC CLUSTER allows you to pass both coordinate data and distance data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #000000; font-family: arial,'Arial Unicode MS',geneva,'Lucida Grande',sans-serif; font-size: 13.46px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 16.83px; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;If the data are coordinates, PROC CLUSTER computes Euclidean distances.If&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #000000; font-family: arial,'Arial Unicode MS',geneva,'Lucida Grande',sans-serif; font-size: 13.46px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 16.83px; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt; you want non-Euclidean distances, You may us&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #000000; font-family: arial,'Arial Unicode MS',geneva,'Lucida Grande',sans-serif; font-size: 13.46px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 16.83px; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;e the DISTANCE procedure &lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #000000; font-family: arial,'Arial Unicode MS',geneva,'Lucida Grande',sans-serif; font-size: 13.46px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 16.83px; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;to compute an appropriate distance data set that can then be used as input to PROC CLUSTER. &lt;BR /&gt;&lt;BR /&gt;Assuming that you would like to use Euclidean distance then you are not required to do the extra step of converting your data to distances.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #000000; font-family: arial,'Arial Unicode MS',geneva,'Lucida Grande',sans-serif; font-size: 13.46px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 16.83px; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;If you already have a distance matrix as input then you can use the TYPE= option on a data step to indicate to PROC CLUSTER or KMEANS that the data set is a distance matrix.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #000000; font-family: arial,'Arial Unicode MS',geneva,'Lucida Grande',sans-serif; font-size: 13.46px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 16.83px; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;&lt;A href="https://go.documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=ledsoptsref&amp;amp;docsetTarget=n1ougt1wsasgafn1xgdfsd8vofoe.htm&amp;amp;locale=en" target="_blank"&gt;https://go.documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=ledsoptsref&amp;amp;docsetTarget=n1ougt1wsasgafn1xgdfsd8vofoe.htm&amp;amp;locale=en&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #000000; font-family: arial,'Arial Unicode MS',geneva,'Lucida Grande',sans-serif; font-size: 13.46px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 16.83px; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;I hope this information helps.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jun 2019 16:31:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Cluster-analysis-in-SAS/m-p/569531#M28025</guid>
      <dc:creator>KevinScott</dc:creator>
      <dc:date>2019-06-27T16:31:55Z</dc:date>
    </item>
  </channel>
</rss>

