<?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: Applying fastclus on distance matrix obtained from distance procedure in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/388593#M20248</link>
    <description>&lt;P&gt;I'm seeking more clarity in this issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have mixed dataset which contains interval and categorical variables and want to do FASTCLUS analysis for segmenting customers.&lt;/P&gt;
&lt;P&gt;I'm trying to get distance matrix using PROC DISTANCE using METHOD=GOWER and input distance matrix in PROC CLUSTER.&lt;/P&gt;
&lt;P&gt;By analyzing pseudo plots&amp;nbsp;and other statistics I figure out 3 cluster solutions are best fit for my objective.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now , for segmentation purpose I would like to input the &lt;U&gt;&lt;STRONG&gt;Distance Matrix&lt;/STRONG&gt;&lt;/U&gt; in PROC FASTCLUS with MAXC=3.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can I do this? From your post I came to know that this is not doable in FASTCLUS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you have any idea&amp;nbsp;that how to work with mixed dataset in this situation.&lt;/P&gt;
&lt;P&gt;Or I need to stick with only PROC CLUSTER for mixed dataset.&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
    <pubDate>Thu, 17 Aug 2017 16:46:32 GMT</pubDate>
    <dc:creator>koomalkc</dc:creator>
    <dc:date>2017-08-17T16:46:32Z</dc:date>
    <item>
      <title>Applying fastclus on distance matrix obtained from distance procedure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/280410#M14770</link>
      <description>&lt;P&gt;I am working on a problem of clustering. I realized that since fastclus procedure uses Euclidean distance, it might not be very good a method for my data, as it contains both Continuous and binary data. So I created one distance matrix using Gower distance using "PROC DISTANCE" and tried to feed that as input to "PROC FASTCLUS". But produced only 1 cluster when specified clusters were 3.&lt;/P&gt;
&lt;P&gt;However it is working fine on original dataset fed to&amp;nbsp;&lt;SPAN&gt;"PROC DISTANCE". How can I obtain the clusters from the distance matrix?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jun 2016 13:09:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/280410#M14770</guid>
      <dc:creator>munitech4u</dc:creator>
      <dc:date>2016-06-27T13:09:06Z</dc:date>
    </item>
    <item>
      <title>Re: Applying fastclus on distance matrix obtained from distance procedure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/280425#M14772</link>
      <description>&lt;P&gt;You might be confusing PROC FASTCLUS with PROC CLUSTER. With PROC CLUSTER you can input a distance matrix (specify that it is a TYPE=DISTANCE data set). PROC CLUSTER can use the distances to create a dendrogram (tree) that clusters the observations. &lt;A href="http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_cluster_examples01.htm" target="_self"&gt;An example is given in the PROC CLUSTER documentation.&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC FASTCLUS does not do hierachical clustering. The goal of PROC FASTCLUS is to find new points that are centers of the clusters. That requires knowing the coordinates of the observations themselves, rather than summarized data like a distance matrix.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When you input the distance matrix, PROC FASTCLUS thinks that you are given it a new data set that has N observations and N variables. It interprets the distances as being coordinates.&amp;nbsp; It should report an ERROR if you input a TYPE=DISTANCE matrix. A Gower matrix has TYPE=SIMILAR, so PROC FASTCLUS&amp;nbsp;will&amp;nbsp;displaying a warning such as&lt;/P&gt;
&lt;P&gt;WARNING: The DATA=WORK.DISTANCE.DATA data set is TYPE=SIMILAR, which is an unrecognized data set&lt;/P&gt;
&lt;P&gt;type for the DATA= option, but it will be treated as an ordinary SAS data set.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is an example that demonstrates the difference between finding the two clusters for four 1-D points (the first call to PROC FASTCLUS) and finding two clusters for four 4-D points (the second call to PROC FASTCLUS):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc fastclus data=A maxclusters=2;
var x;
run;
data A;
input x @@;
datalines;
0 1 5 6
;

/* find optimal centers for 1-D data at c1=0.5 and c2=5.5 */
proc fastclus data=A maxclusters=2;
var x;
run;

proc distance data=A out=Distance method=gower shape=square;
var interval(x);
run;

/* Find optimal centers for 4-D data. A WARNING message is 
   displayed because TYPE=DISTANCE data not supported. */
proc fastclus data=Distance maxclusters=2;
run;

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 27 Jun 2016 14:08:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/280425#M14772</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-06-27T14:08:16Z</dc:date>
    </item>
    <item>
      <title>Re: Applying fastclus on distance matrix obtained from distance procedure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/280488#M14782</link>
      <description>Thanks. But that does not solve my objective. How can I cluster the distance matrix output from proc distance?</description>
      <pubDate>Mon, 27 Jun 2016 17:02:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/280488#M14782</guid>
      <dc:creator>munitech4u</dc:creator>
      <dc:date>2016-06-27T17:02:09Z</dc:date>
    </item>
    <item>
      <title>Re: Applying fastclus on distance matrix obtained from distance procedure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/280491#M14783</link>
      <description>&lt;P&gt;As I mentioned in the first paragraph of my reply, you can use PROC CLUSTER to cluster the distance matrix.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jun 2016 17:04:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/280491#M14783</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-06-27T17:04:05Z</dc:date>
    </item>
    <item>
      <title>Re: Applying fastclus on distance matrix obtained from distance procedure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/280552#M14784</link>
      <description>&lt;P&gt;I tried the proc cluster with method=density k=30. But it failed to produce any result.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jun 2016 18:44:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/280552#M14784</guid>
      <dc:creator>munitech4u</dc:creator>
      <dc:date>2016-06-27T18:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: Applying fastclus on distance matrix obtained from distance procedure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/280561#M14785</link>
      <description>&lt;P&gt;Were there ERRORS or WARNINGS in the log? &amp;nbsp;Without more details or access to your data, there's not a lot we can suggest. &amp;nbsp;The following statements extract 50 obs fro mthe sashelp.iris data set. Calling PROC DISTANCE creates a 50x50 distance matrix. Then &amp;nbsp;PROC CLUSTER uses the distance matrix to&amp;nbsp;form a hierarchical cluster model. &amp;nbsp;Perhaps you can modify this code to make yours work, or modify this code so that it "fails to produce any result."&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Iris;
length ID $3.;
set Sashelp.Iris ;
ID = _N_;
if _N_ &amp;lt; 50;
run;

proc distance data=Iris out=Distance method=gower shape=square;
var interval(SepalWidth SepalLength PetalWidth PetalLength);
id ID;
run;

proc cluster data=Distance(type=distance) method=density k=30;
id ID;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 27 Jun 2016 18:59:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/280561#M14785</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-06-27T18:59:37Z</dc:date>
    </item>
    <item>
      <title>Re: Applying fastclus on distance matrix obtained from distance procedure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/280568#M14786</link>
      <description>&lt;P&gt;It says failed to allocate memory.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;I have a 27000x27000 distance matrix. Why should it fail, as in real world the matrix can be really huge depending on the number of customers. Usually for big industries customers can range from few million- billion.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there a way to get good results in reasonable time with proc cluster? Or some divisive method to overcome this problem?&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jun 2016 19:17:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/280568#M14786</guid>
      <dc:creator>munitech4u</dc:creator>
      <dc:date>2016-06-27T19:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: Applying fastclus on distance matrix obtained from distance procedure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/280585#M14787</link>
      <description>&lt;P&gt;You can compute &lt;A href="http://blogs.sas.com/content/iml/2014/04/28/how-much-ram-do-i-need-to-store-that-matrix.html" target="_self"&gt;how many gigabytes it takes to hold a matrix in memory.&lt;/A&gt;&amp;nbsp;A 27000 x 27000 requires&amp;nbsp;5.43 GB of RAM just to store the distance matrix, and &lt;A href="http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_cluster_details20.htm" target="_self"&gt;additional memory to compute the clusters&lt;/A&gt;.&amp;nbsp;The most likely explanation is that you are not allocating sufficient RAM to your SAS process. I don't know how much you would need, but try to use the -MEMSIZE system option to set up &amp;nbsp;16G:&lt;A href="http://blogs.sas.com/content/iml/2015/07/31/large-matrices.html" target="_self"&gt; Directions for setting the -MEMSIZE option&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Whether your computation will finish in a reasonable time is another matter, and I have no experience with problems of that size. Obviously (from the name) &lt;A href="http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_fastclus_details07.htm" target="_self"&gt;the FASTCLUS procedure is much faster.&lt;/A&gt;&amp;nbsp; &amp;nbsp;If you know that you are looking for a small number of clusters (maybe 50 or 100) it might be faster to run PROC FASTCLUS several times with varying MAXCLUSTER= values.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;By the way, I just ran my example without the SHAPE=SQUARE option, and it works, so if your&amp;nbsp;distance matrix is symmetric you might be able to save some memory by storing only half the matrix.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jun 2016 20:06:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/280585#M14787</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-06-27T20:06:48Z</dc:date>
    </item>
    <item>
      <title>Re: Applying fastclus on distance matrix obtained from distance procedure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/280698#M14788</link>
      <description>&lt;P&gt;Thanks for your inputs!!&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jun 2016 09:24:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/280698#M14788</guid>
      <dc:creator>munitech4u</dc:creator>
      <dc:date>2016-06-28T09:24:05Z</dc:date>
    </item>
    <item>
      <title>Re: Applying fastclus on distance matrix obtained from distance procedure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/280739#M14789</link>
      <description>&lt;P&gt;Ok, I obtained the results. But I am having difficulty understanding its output. I think it was formed as many clusters as the number of rows in matrix. How can i form only 3 clusters out of them? does it make sense to rank the _DENSE_ into 3 bins to get 3 clusters?&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jun 2016 12:28:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/280739#M14789</guid>
      <dc:creator>munitech4u</dc:creator>
      <dc:date>2016-06-28T12:28:05Z</dc:date>
    </item>
    <item>
      <title>Re: Applying fastclus on distance matrix obtained from distance procedure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/280775#M14792</link>
      <description>&lt;P&gt;You sound surprised, but&amp;nbsp;a hierarchical tree partitions the observations into 1, 2, 3, 4,...., 27,000 clusters, which is one reason that PROC CLUSTER is slower than FASTCLUS, which only partitions the obs into k clusters for a particular choice of k.&amp;nbsp; The distance or density variables enable you to prune the tree at a particular level, &lt;A href="http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_cluster_examples02.htm" target="_self"&gt;as shown in the CLUSTER documentation.&lt;/A&gt;&amp;nbsp; You should study the doc closely to get a handle on these concepts.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use PROC TREE to prune the tree to three clusters.&amp;nbsp; First use the OUTTREE=Tree option in the PROC CLUSTER statement to write the tree to a SAS data set.&amp;nbsp; Then use the following (untested) code to visualize:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc tree data=tree noprint out=Prune3 ncl=3; /* prune to 3 clusters */&lt;BR /&gt;   /* optionally use HEIGHT stmt to specify the height var */
   copy x1 x2 x3 ...;   /* list important variables here */
run;

title "Plot of 3 Clusters";
proc sgscatter data=Prune3;
   matrix x1 x2 x3 ... / group=cluster;   /* impt vars */
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I recommend that you read the &lt;A href="http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_cluster_gettingstarted.htm" target="_self"&gt;Getting Started Example&lt;/A&gt;&amp;nbsp;and the chapter on &lt;A href="http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_introclus_toc.htm" target="_self"&gt;Introduction to Clustering Procedures.&lt;/A&gt;&amp;nbsp;Good stuff in there.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jun 2016 13:30:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/280775#M14792</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-06-28T13:30:10Z</dc:date>
    </item>
    <item>
      <title>Re: Applying fastclus on distance matrix obtained from distance procedure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/339238#M17870</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm faced with a similar situation: I have a Gower's similarity matrix that I need to use as an input for proc cluster. I followed your advice and allocated 12 GB of RAM to the SAS Process, however, it still wouldn't work. I get the following error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;WARNING: Unable to allocate sufficient memory. Amount requested was 2147483647, and the amount&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; available was 2147483647. External storage will be used for distances.&lt;BR /&gt;ERROR: Invalid position -2147479016 for utility file WORK.'SASTMP-000000006'n.UTILITY.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please suggest what I could do?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;MS&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2017 13:52:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/339238#M17870</guid>
      <dc:creator>mszommer</dc:creator>
      <dc:date>2017-03-08T13:52:43Z</dc:date>
    </item>
    <item>
      <title>Re: Applying fastclus on distance matrix obtained from distance procedure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/388560#M20246</link>
      <description>&lt;P&gt;Hey Rick_SAS,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is that you mean, we cann't fed the distance matrix (output dataset from PROC DISTANCE) &amp;nbsp;in to PROC FASTCLUS.&lt;/P&gt;
&lt;P&gt;If so then, how&amp;nbsp;it is possible to&amp;nbsp;use FASTCLUS for mixed datasets containg nominal,interval and binary variables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 16 Aug 2017 18:30:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/388560#M20246</guid>
      <dc:creator>koomalkc</dc:creator>
      <dc:date>2017-08-16T18:30:40Z</dc:date>
    </item>
    <item>
      <title>Re: Applying fastclus on distance matrix obtained from distance procedure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/388587#M20247</link>
      <description>&lt;P&gt;Here is a link to &lt;A href="http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_fastclus_overview.htm" target="_self"&gt;the FASTCLUS documentation.&lt;/A&gt;&amp;nbsp;The first sentence says "The FASTCLUS procedure performs a disjoint cluster analysis on the basis of distances computed from one or more &lt;STRONG&gt;quantitative&lt;/STRONG&gt; variables." Quantitative means interval, not nominal and not binary.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The procedure analyzes data by using the (L_p) distance between observations, so it is inherently assuming continuous&amp;nbsp;coordinates.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As I mentioned previously, you can use PROC DISTANCE and then input the distance matrix to PROC CLUSTER or PROC MODECLUS. But PROC FASTCLUS&amp;nbsp;only analyzes continuous variables.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Aug 2017 19:30:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/388587#M20247</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-08-16T19:30:15Z</dc:date>
    </item>
    <item>
      <title>Re: Applying fastclus on distance matrix obtained from distance procedure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/388593#M20248</link>
      <description>&lt;P&gt;I'm seeking more clarity in this issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have mixed dataset which contains interval and categorical variables and want to do FASTCLUS analysis for segmenting customers.&lt;/P&gt;
&lt;P&gt;I'm trying to get distance matrix using PROC DISTANCE using METHOD=GOWER and input distance matrix in PROC CLUSTER.&lt;/P&gt;
&lt;P&gt;By analyzing pseudo plots&amp;nbsp;and other statistics I figure out 3 cluster solutions are best fit for my objective.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now , for segmentation purpose I would like to input the &lt;U&gt;&lt;STRONG&gt;Distance Matrix&lt;/STRONG&gt;&lt;/U&gt; in PROC FASTCLUS with MAXC=3.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can I do this? From your post I came to know that this is not doable in FASTCLUS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you have any idea&amp;nbsp;that how to work with mixed dataset in this situation.&lt;/P&gt;
&lt;P&gt;Or I need to stick with only PROC CLUSTER for mixed dataset.&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 17 Aug 2017 16:46:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/388593#M20248</guid>
      <dc:creator>koomalkc</dc:creator>
      <dc:date>2017-08-17T16:46:32Z</dc:date>
    </item>
    <item>
      <title>Re: Applying fastclus on distance matrix obtained from distance procedure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/388655#M20249</link>
      <description>&lt;P&gt;Since I have already answered this question, I invite others&amp;nbsp;to give their answers.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Aug 2017 22:36:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Applying-fastclus-on-distance-matrix-obtained-from-distance/m-p/388655#M20249</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-08-16T22:36:17Z</dc:date>
    </item>
  </channel>
</rss>

