<?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: Combine cluster analysis with proc GENMOD in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163144#M8515</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Seems like a right approach. What is step3? Why are you using GLM?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 17 Aug 2014 16:23:49 GMT</pubDate>
    <dc:creator>stat_sas</dc:creator>
    <dc:date>2014-08-17T16:23:49Z</dc:date>
    <item>
      <title>Combine cluster analysis with proc GENMOD</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163131#M8502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bonjour tout le monde/Good afternoon everyone!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've tried to use cluster analysis to combine small groups of similar risks (same caracteristics) to allow easier incorporation into GLMs (proc GENMOD here).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;I've met some difficulties to make the link between step 1 and step 2.&lt;/SPAN&gt; I have a traditionnal insurance table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Question 1 (step 1): May I add the dependant variable&amp;nbsp; freq_adj as SUPPLEMENTARY VARIABLE?&lt;/P&gt;&lt;P&gt;Question 2 (step 2): PROC GENMOD I obtain my four clusters but how applied to proc GENMOD? Where can I integrate my clusters?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**STEP 1: MIX CLUSTERING ANALYSIS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC FASTCLUS DATA=ins.insurance MAXC=20 MAXITER=50 CONVERGE=0.01 MEAN=centres OUT=partial CLUSTER=cluster DELETE=5 DRIFT;&lt;/P&gt;&lt;P&gt;VAR ageconducteur region ;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC CLUSTER DATA=centres OUTTREE=tree METHOD=ward CCC PSEUDO PRINT=10;&lt;/P&gt;&lt;P&gt;VAR ageconducteur region;&lt;/P&gt;&lt;P&gt;COPY cluster;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC SORT DATA=tree;&lt;/P&gt;&lt;P&gt;BY _ncl_;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC TREE DATA=tree NCL=4 OUT=segm1 ;&lt;/P&gt;&lt;P&gt;COPY presegm ;&lt;/P&gt;&lt;P&gt;RUN ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC SORT DATA=partial; BY cluster; RUN;&lt;/P&gt;&lt;P&gt;PROC SORT DATA=segm1; BY cluster; RUN;&lt;/P&gt;&lt;P&gt;DATA segm;&lt;/P&gt;&lt;P&gt;MERGE partial segm1;&lt;/P&gt;&lt;P&gt;BY cluster;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**STEP 2: PROC GENMOD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC GENMOD DATA = ???; ODS OUTPUT ParameterEstimates=Genmod1_Param ;&lt;/P&gt;&lt;P&gt;class ageconducteur ;&lt;/P&gt;&lt;P&gt;weight exposition;&amp;nbsp; &lt;/P&gt;&lt;P&gt;MODEL freq_adj = ageconducteur region /&amp;nbsp; maxiter=2000&amp;nbsp; dist = poisson link = log;&lt;/P&gt;&lt;P&gt;format ageconducteur forage.;&amp;nbsp;&amp;nbsp; output out=poisson; RUN; QUIT;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ce message a été modifié par&amp;nbsp;: CHARBIT Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Aug 2014 15:03:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163131#M8502</guid>
      <dc:creator>jonathanch</dc:creator>
      <dc:date>2014-08-15T15:03:35Z</dc:date>
    </item>
    <item>
      <title>Re: Combine cluster analysis with proc GENMOD</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163132#M8503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the source of dataset segm1?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Aug 2014 17:02:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163132#M8503</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2014-08-15T17:02:09Z</dc:date>
    </item>
    <item>
      <title>Re: Combine cluster analysis with proc GENMOD</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163133#M8504</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;An oversight on my behalf &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; thanks. I modified&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Aug 2014 20:40:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163133#M8504</guid>
      <dc:creator>jonathanch</dc:creator>
      <dc:date>2014-08-15T20:40:46Z</dc:date>
    </item>
    <item>
      <title>Re: Combine cluster analysis with proc GENMOD</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163134#M8505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is freq_adj? Is that frequency variable based on 4 clusters?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Aug 2014 21:44:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163134#M8505</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2014-08-15T21:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: Combine cluster analysis with proc GENMOD</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163135#M8506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;freq_adj is my dependant variable (number of claims). This variable didn't integrated in cluster analysis because I don't manage to make the link between cluster analysis and proc genmod,gam...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Aug 2014 22:22:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163135#M8506</guid>
      <dc:creator>jonathanch</dc:creator>
      <dc:date>2014-08-15T22:22:59Z</dc:date>
    </item>
    <item>
      <title>Re: Combine cluster analysis with proc GENMOD</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163136#M8507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please correct me if I am wrong&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;freq_adj is included in the ins.insurance data and you just used predictors to run cluster analysis and ended up with four clusters solution right?&lt;/P&gt;&lt;P&gt;Now you want to run model for freq_adj using dataset that has 4 clusters right?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Aug 2014 03:53:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163136#M8507</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2014-08-16T03:53:35Z</dc:date>
    </item>
    <item>
      <title>Re: Combine cluster analysis with proc GENMOD</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163137#M8508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'am lost :smileysilly:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes it is, freq_adj is included in the ins.insurance data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;you just used predictors to run cluster analysis&lt;/SPAN&gt;". Must I run a regression model before cluster analysis? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes I want to run model for freq_adj (number of claims) using dataset that has 4 clusters right thanks to cluster analysis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Aug 2014 10:48:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163137#M8508</guid>
      <dc:creator>jonathanch</dc:creator>
      <dc:date>2014-08-16T10:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: Combine cluster analysis with proc GENMOD</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163138#M8509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So you are trying to run 4 models for 4 clusters after merging freq_adj variable to cluster dataset with the objective to produce better results within each cluster right?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Aug 2014 11:54:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163138#M8509</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2014-08-16T11:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: Combine cluster analysis with proc GENMOD</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163139#M8510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes that was one of my ideas &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10pt; line-height: 1.5em; background-color: #ffffff;"&gt;combining groups of similar risks and use proc genmod for each cluster to extract predictors.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know if in the area of insurance (or another) is an acceptable method and how incorporate in GLMS? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Aug 2014 12:11:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163139#M8510</guid>
      <dc:creator>jonathanch</dc:creator>
      <dc:date>2014-08-16T12:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: Combine cluster analysis with proc GENMOD</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163140#M8511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Idea looks right but clustering can produce better predictions as compared to overall model if freq_adj is significantly different across 4 clusters.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Aug 2014 16:14:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163140#M8511</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2014-08-16T16:14:23Z</dc:date>
    </item>
    <item>
      <title>Re: Combine cluster analysis with proc GENMOD</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163141#M8512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok I'm going to develop that idea.&lt;/P&gt;&lt;P&gt;According to your experiency, what is the best method to check if there is a significant heterogeineity across 4 clusters? How can I compare an overall model (a single GLM) and 4 GLMS?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a good day.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Aug 2014 19:09:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163141#M8512</guid>
      <dc:creator>jonathanch</dc:creator>
      <dc:date>2014-08-16T19:09:56Z</dc:date>
    </item>
    <item>
      <title>Re: Combine cluster analysis with proc GENMOD</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163142#M8513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Proc ANOVA can be used to check differences among 4 clusters. To learn more, why did you use first PROC FASTCLUS then PROC CLUSTER for cluster solution and why creating 4 clusters only?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 17 Aug 2014 01:51:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163142#M8513</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2014-08-17T01:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: Combine cluster analysis with proc GENMOD</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163143#M8514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Because I have a big data (many clients) so I began with PROC FASTCLUS then I took back mean &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;(mean=CENTRES) to run PROC CLUSTER. That is a MIX CAH method.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4 clusters because in my PROC CLUSTER I interpreted the CCC,semi-partial R sqared...indicators and what the dendogram showed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will run PROC ANOVA to see if there is a significant difference between clusters. &lt;/P&gt;&lt;P&gt;So if the stat test is no significant, my predictors will be less acurate than overall model.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 1: MIX CAH&lt;/P&gt;&lt;P&gt;Step 2: PROC ANOVA &lt;/P&gt;&lt;P&gt;Step 3: GLMS for each cluster if anova release a significant difference between clusters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Right?&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10pt; line-height: 1.5em; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I think the number of claims or claim costs can be very volatile between clusters depending on the guarantee. I'm gonna to see.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 17 Aug 2014 10:31:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163143#M8514</guid>
      <dc:creator>jonathanch</dc:creator>
      <dc:date>2014-08-17T10:31:12Z</dc:date>
    </item>
    <item>
      <title>Re: Combine cluster analysis with proc GENMOD</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163144#M8515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Seems like a right approach. What is step3? Why are you using GLM?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 17 Aug 2014 16:23:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163144#M8515</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2014-08-17T16:23:49Z</dc:date>
    </item>
    <item>
      <title>Re: Combine cluster analysis with proc GENMOD</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163145#M8516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;GLM to estimate the pure prenium (frequency of claims*claim costs)...I've began that since I red the following text:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've found this text on casact.org (Casualty Actuarial Society):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Cluster &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;analysis applies a collection of different algorithms to group these units into clusters based on historical &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;experience, modeled experience, or well-defined similarity rules. &lt;STRONG&gt;This allows easier incorporation into &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;GLMs&lt;/STRONG&gt;."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;it is essential to take into account the heterogeneity in pricing yet.&lt;/STRONG&gt;....I don't understand their reasoning.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GLM to estimate the pure prenium (frequency of claims*claim costs).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Classical method:&lt;STRONG&gt; (This method is without STEP 1)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The average claim frequency for customers in&lt;SPAN style="text-decoration: underline;"&gt; Area A1&lt;/SPAN&gt; and in the ageGroup 20-29 is then:&lt;/P&gt;&lt;P&gt;0,044 * &lt;SPAN style="text-decoration: underline;"&gt;0,689&lt;/SPAN&gt; * 0,472 = 0,014&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;intercept=0.044&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the same way we calculate the average claim size for this group to be&lt;/P&gt;&lt;P&gt;61037 * 1,873 * 0,789 = 90211&lt;/P&gt;&lt;P&gt;The pure premium for this group is then 0,014*90211=1263.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(SAS souce)=&lt;A href="http://www2.sas.com/proceedings/forum2008/333-2008.pdf" title="http://www2.sas.com/proceedings/forum2008/333-2008.pdf"&gt;http://www2.sas.com/proceedings/forum2008/333-2008.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Do you understand my questions?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 17 Aug 2014 17:59:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163145#M8516</guid>
      <dc:creator>jonathanch</dc:creator>
      <dc:date>2014-08-17T17:59:40Z</dc:date>
    </item>
    <item>
      <title>Re: Combine cluster analysis with proc GENMOD</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163146#M8517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the detail. I think you are on the right track,&amp;nbsp; you have 4 clusters just need to check heterogeneity in freq_adj variable across 4 clusters using proc anova. If they are statistically different then you can proceed with proc genmod. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 17 Aug 2014 18:33:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163146#M8517</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2014-08-17T18:33:58Z</dc:date>
    </item>
    <item>
      <title>Re: Combine cluster analysis with proc GENMOD</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163147#M8518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I win with homogeneity but I also lose because I multiply the number of estimations..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your time. &lt;/P&gt;&lt;P&gt;See you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 17 Aug 2014 19:54:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Combine-cluster-analysis-with-proc-GENMOD/m-p/163147#M8518</guid>
      <dc:creator>jonathanch</dc:creator>
      <dc:date>2014-08-17T19:54:55Z</dc:date>
    </item>
  </channel>
</rss>

