<?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: Scoring a new dataset with Clusters created in Fastclus in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Scoring-a-new-dataset-with-Clusters-created-in-Fastclus/m-p/559351#M10282</link>
    <description>&lt;P&gt;Please post the code that you tried to use.&lt;/P&gt;</description>
    <pubDate>Thu, 16 May 2019 15:24:39 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2019-05-16T15:24:39Z</dc:date>
    <item>
      <title>Scoring a new dataset with Clusters created in Fastclus</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Scoring-a-new-dataset-with-Clusters-created-in-Fastclus/m-p/559314#M10272</link>
      <description>&lt;P&gt;Hi, I have built 8 clusters using proc fastclus and I now want to apply it to a new dataset - how do I do this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there something similar like proc score that is used in logistic regression?&lt;/P&gt;</description>
      <pubDate>Thu, 16 May 2019 14:00:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Scoring-a-new-dataset-with-Clusters-created-in-Fastclus/m-p/559314#M10272</guid>
      <dc:creator>MoniqueParmar</dc:creator>
      <dc:date>2019-05-16T14:00:13Z</dc:date>
    </item>
    <item>
      <title>Re: Scoring a new dataset with Clusters created in Fastclus</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Scoring-a-new-dataset-with-Clusters-created-in-Fastclus/m-p/559325#M10275</link>
      <description>&lt;P&gt;I think this thread explains the syntax that you need to use:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Programming/Scoring-Codes-after-Proc-Cluster-rules-found/td-p/265771" target="_blank"&gt;https://communities.sas.com/t5/SAS-Programming/Scoring-Codes-after-Proc-Cluster-rules-found/td-p/265771&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 May 2019 14:28:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Scoring-a-new-dataset-with-Clusters-created-in-Fastclus/m-p/559325#M10275</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2019-05-16T14:28:56Z</dc:date>
    </item>
    <item>
      <title>Re: Scoring a new dataset with Clusters created in Fastclus</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Scoring-a-new-dataset-with-Clusters-created-in-Fastclus/m-p/559337#M10278</link>
      <description>&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tried to apply this and the clusters are completely different&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is there another method to use similar to proc score?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How else would you be able to score customers with a cluster once you have built a segmentation?&lt;/P&gt;</description>
      <pubDate>Thu, 16 May 2019 15:01:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Scoring-a-new-dataset-with-Clusters-created-in-Fastclus/m-p/559337#M10278</guid>
      <dc:creator>MoniqueParmar</dc:creator>
      <dc:date>2019-05-16T15:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: Scoring a new dataset with Clusters created in Fastclus</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Scoring-a-new-dataset-with-Clusters-created-in-Fastclus/m-p/559351#M10282</link>
      <description>&lt;P&gt;Please post the code that you tried to use.&lt;/P&gt;</description>
      <pubDate>Thu, 16 May 2019 15:24:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Scoring-a-new-dataset-with-Clusters-created-in-Fastclus/m-p/559351#M10282</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2019-05-16T15:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: Scoring a new dataset with Clusters created in Fastclus</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Scoring-a-new-dataset-with-Clusters-created-in-Fastclus/m-p/559365#M10287</link>
      <description>&lt;P&gt;&lt;BR /&gt;/* original dataset and cluster */&lt;/P&gt;&lt;P&gt;PROC FASTCLUS&lt;BR /&gt;DATA=WORK.SEGBASEMIG&lt;BR /&gt;OUT=WORK.SEGBASEMIGTEST&lt;BR /&gt;outstat= OUTCLUS&lt;BR /&gt;MAXCLUSTERS = 8&lt;BR /&gt;MAXITER=1000&lt;BR /&gt;DELETE= 100&lt;BR /&gt;;&lt;BR /&gt;VAR&lt;BR /&gt;&lt;BR /&gt;TICKETS_2_ORMORE&lt;BR /&gt;PARTNER_FLAG&lt;BR /&gt;/*PARTNER_DOMINANT*/&lt;BR /&gt;/*DIRECT_ONLINE_FLAG*/&lt;BR /&gt;DIRECT_ONLINE_DOMINANT&lt;BR /&gt;/*ONTHEDAY_FLAG*/&lt;BR /&gt;ONTHEDAY_2_ORMORE&lt;BR /&gt;LONG_JOURNEY_2_ORMORE&lt;BR /&gt;/*SINGLE_DOMINANT_FLAG*/&lt;BR /&gt;RETURN_DOMINANT_FLAG&lt;BR /&gt;OPENRETURN_DOMINANT_FLAG&lt;BR /&gt;/*WEEKPEAK_FLAG*/&lt;BR /&gt;WEEKPEAK_DOMINANT&lt;BR /&gt;WEEKOFFPEAK_DOMINANT&lt;BR /&gt;/*WEEKEND_DOMINANT*/&lt;BR /&gt;/*WEEKORMORE_FLAG*/&lt;BR /&gt;WEEKORMORE_DOMINANT&lt;BR /&gt;/*SAMEDAY_RETURN_FLAG*/&lt;BR /&gt;/*ANCIL_FLAG*/&lt;BR /&gt;ANCIL_2_ORMORE&lt;BR /&gt;TYPES_2_ORMORE&lt;BR /&gt;COUPLE_FLAG&lt;BR /&gt;/*COUPLE_2_ORMORE*/&lt;BR /&gt;FAMILY_FLAG&lt;BR /&gt;/*FAMILY_2_ORMORE*/&lt;BR /&gt;GROUP_FLAG&lt;BR /&gt;/*GROUP_2_ORMORE*/&lt;BR /&gt;/*SOLO_DOMINANT_FLAG*/&lt;BR /&gt;ROUTES_2_ORMORE&lt;BR /&gt;EVENT_FLAG&lt;BR /&gt;/*CATEGORIES_2_ORMORE*/&lt;BR /&gt;FREQ_JOURNEY_FLAG&lt;BR /&gt;/*UNI_STOP_FLAG*/&lt;BR /&gt;/*UNI_CITY_FLAG*/&lt;BR /&gt;/*UNI_PROMO_FLAG*/&lt;BR /&gt;/*AIRPORT_FLAG*/&lt;BR /&gt;AIRPORT_DOMINANT&lt;BR /&gt;HIGHVALUE_FLAG&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/* new dataset and cluster */&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC FASTCLUS&lt;BR /&gt;DATA=WORK.SEGBASEMIG2&lt;BR /&gt;OUT=WORK.SEGBASEMIGTEST2&lt;BR /&gt;INSTAT= OUTCLUS&lt;BR /&gt;MAXCLUSTERS = 8&lt;BR /&gt;MAXITER=1000&lt;BR /&gt;DELETE= 100&lt;BR /&gt;;&lt;BR /&gt;VAR&lt;BR /&gt;&lt;BR /&gt;TICKETS_2_ORMORE&lt;BR /&gt;PARTNER_FLAG&lt;BR /&gt;/*PARTNER_DOMINANT*/&lt;BR /&gt;/*DIRECT_ONLINE_FLAG*/&lt;BR /&gt;DIRECT_ONLINE_DOMINANT&lt;BR /&gt;/*ONTHEDAY_FLAG*/&lt;BR /&gt;ONTHEDAY_2_ORMORE&lt;BR /&gt;LONG_JOURNEY_2_ORMORE&lt;BR /&gt;/*SINGLE_DOMINANT_FLAG*/&lt;BR /&gt;RETURN_DOMINANT_FLAG&lt;BR /&gt;OPENRETURN_DOMINANT_FLAG&lt;BR /&gt;/*WEEKPEAK_FLAG*/&lt;BR /&gt;WEEKPEAK_DOMINANT&lt;BR /&gt;WEEKOFFPEAK_DOMINANT&lt;BR /&gt;/*WEEKEND_DOMINANT*/&lt;BR /&gt;/*WEEKORMORE_FLAG*/&lt;BR /&gt;WEEKORMORE_DOMINANT&lt;BR /&gt;/*SAMEDAY_RETURN_FLAG*/&lt;BR /&gt;/*ANCIL_FLAG*/&lt;BR /&gt;ANCIL_2_ORMORE&lt;BR /&gt;TYPES_2_ORMORE&lt;BR /&gt;COUPLE_FLAG&lt;BR /&gt;/*COUPLE_2_ORMORE*/&lt;BR /&gt;FAMILY_FLAG&lt;BR /&gt;/*FAMILY_2_ORMORE*/&lt;BR /&gt;GROUP_FLAG&lt;BR /&gt;/*GROUP_2_ORMORE*/&lt;BR /&gt;/*SOLO_DOMINANT_FLAG*/&lt;BR /&gt;ROUTES_2_ORMORE&lt;BR /&gt;EVENT_FLAG&lt;BR /&gt;/*CATEGORIES_2_ORMORE*/&lt;BR /&gt;FREQ_JOURNEY_FLAG&lt;BR /&gt;/*UNI_STOP_FLAG*/&lt;BR /&gt;/*UNI_CITY_FLAG*/&lt;BR /&gt;/*UNI_PROMO_FLAG*/&lt;BR /&gt;/*AIRPORT_FLAG*/&lt;BR /&gt;AIRPORT_DOMINANT&lt;BR /&gt;HIGHVALUE_FLAG&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;;&lt;BR /&gt;RUN;&lt;/P&gt;</description>
      <pubDate>Thu, 16 May 2019 15:40:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Scoring-a-new-dataset-with-Clusters-created-in-Fastclus/m-p/559365#M10287</guid>
      <dc:creator>MoniqueParmar</dc:creator>
      <dc:date>2019-05-16T15:40:21Z</dc:date>
    </item>
    <item>
      <title>Re: Scoring a new dataset with Clusters created in Fastclus</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Scoring-a-new-dataset-with-Clusters-created-in-Fastclus/m-p/559508#M10347</link>
      <description>&lt;P&gt;Try running the second FASTCLUS code without the options MAXCLUSTERS MAXITER or DELETE&lt;/P&gt;</description>
      <pubDate>Thu, 16 May 2019 22:48:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Scoring-a-new-dataset-with-Clusters-created-in-Fastclus/m-p/559508#M10347</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-05-16T22:48:55Z</dc:date>
    </item>
  </channel>
</rss>

