<?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: Assigning weights to variables to calculate rank/score of a customer in SAS Data Science</title>
    <link>https://communities.sas.com/t5/SAS-Data-Science/Assigning-weights-to-variables-to-calculate-rank-score-of-a/m-p/307223#M4592</link>
    <description>Thanks, &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;.&lt;BR /&gt;Looks like Possion Model works for supervised model. I don't have any target variable in my data , that is related to other variables.&lt;BR /&gt;&lt;BR /&gt;I want each observation to get a weight based on the weights of other variables, exactly like your first answer-&lt;BR /&gt;&lt;BR /&gt;"Suppose for the first PC,which occupy %60&lt;BR /&gt;&lt;BR /&gt;y1=0.5v1+0.8v2-0.2v3 ,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Suppose for the second PC,which occupy %40&lt;BR /&gt;&lt;BR /&gt;y2=0.5v1+0.8v2-0.2v3 ,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;the final score maybe : Y=0.6*Y1+0.4*Y2 "&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;But here , Y is my each observation, and X are my variables, coefficients being the weights.&lt;BR /&gt;&lt;BR /&gt;X's are both categorical and continuous.</description>
    <pubDate>Tue, 25 Oct 2016 19:17:25 GMT</pubDate>
    <dc:creator>vsharipriya</dc:creator>
    <dc:date>2016-10-25T19:17:25Z</dc:date>
    <item>
      <title>Assigning weights to variables to calculate rank/score of a customer</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Assigning-weights-to-variables-to-calculate-rank-score-of-a/m-p/306159#M4562</link>
      <description>&lt;P&gt;I have data on customer purchase history. I want to score each of these customers based on the attributes. For this, I want to calculate the score by assigning weights to variables, (ex: 10% to v1, 20% to v2, 50% to v3 etc.,) and then sum up these weights. The resultant score should tell me how good a customer is. For instance, a score above 500 means they are good/loyal customers and we can expect good sales from them next time. While&amp;nbsp;the threshold can be decided once we get a score, I want to know how I can approach this problem.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I decided to run PCA, from which I can get the PCA scores and hence use coefficients as weights.&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, if I select the first principal component and take the coefficients,&lt;/P&gt;&lt;P&gt;y1=0.5v1+0.8v2-0.2v3 ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;replacing v1, v2 , v3 with the values of the attributes, I can get a score of each observation.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not sure if this is a clever approach. Is there a better way to optimize the weights and calculate the&amp;nbsp;score of each customer? Any thoughts are appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Oct 2016 02:38:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Assigning-weights-to-variables-to-calculate-rank-score-of-a/m-p/306159#M4562</guid>
      <dc:creator>vsharipriya</dc:creator>
      <dc:date>2016-10-21T02:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning weights to variables to calculate rank/score of a customer</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Assigning-weights-to-variables-to-calculate-rank-score-of-a/m-p/306172#M4563</link>
      <description>&lt;P&gt;That is a clever approach.&lt;/P&gt;
&lt;P&gt;But PCA is only applied for continuous variables.&lt;/P&gt;
&lt;P&gt;And you also missed the second Primary Component, which maybe occupy very big variance of data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe you could includ these two primary component or three......&lt;/P&gt;
&lt;P&gt;Suppose for the first PC,which occupy %60&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;y1=0.5v1+0.8v2-0.2v3 ,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Suppose for the second PC,which occupy %40&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;y2=0.5v1+0.8v2-0.2v3 ,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;the final score maybe : Y=0.6*Y1+0.4*Y2 ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Oct 2016 03:31:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Assigning-weights-to-variables-to-calculate-rank-score-of-a/m-p/306172#M4563</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-10-21T03:31:50Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning weights to variables to calculate rank/score of a customer</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Assigning-weights-to-variables-to-calculate-rank-score-of-a/m-p/306173#M4564</link>
      <description>&lt;P&gt;So this is an unsupervised learning problem?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You have no data to calibrate your model with?&lt;/P&gt;</description>
      <pubDate>Fri, 21 Oct 2016 03:53:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Assigning-weights-to-variables-to-calculate-rank-score-of-a/m-p/306173#M4564</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-10-21T03:53:04Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning weights to variables to calculate rank/score of a customer</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Assigning-weights-to-variables-to-calculate-rank-score-of-a/m-p/306174#M4565</link>
      <description>&lt;P&gt;Or you could use Log-Linear Model.&lt;/P&gt;
&lt;P&gt;Check the documentation of PROC CATMOD&lt;/P&gt;
&lt;P&gt;Example 32.4: Log-Linear Model, Three Dependent Variables&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note: remove the non-significant variables before applying your model.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Oct 2016 03:58:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Assigning-weights-to-variables-to-calculate-rank-score-of-a/m-p/306174#M4565</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-10-21T03:58:58Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning weights to variables to calculate rank/score of a customer</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Assigning-weights-to-variables-to-calculate-rank-score-of-a/m-p/306176#M4566</link>
      <description>Yes &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;. It is unsupervised.</description>
      <pubDate>Fri, 21 Oct 2016 04:12:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Assigning-weights-to-variables-to-calculate-rank-score-of-a/m-p/306176#M4566</guid>
      <dc:creator>vsharipriya</dc:creator>
      <dc:date>2016-10-21T04:12:34Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning weights to variables to calculate rank/score of a customer</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Assigning-weights-to-variables-to-calculate-rank-score-of-a/m-p/306177#M4567</link>
      <description>&lt;P&gt;Look at proc varclus&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, make sure to standardize variables. Otherwise larger variables take over.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Oct 2016 04:31:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Assigning-weights-to-variables-to-calculate-rank-score-of-a/m-p/306177#M4567</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-10-21T04:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning weights to variables to calculate rank/score of a customer</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Assigning-weights-to-variables-to-calculate-rank-score-of-a/m-p/306195#M4568</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza﻿&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Very good point . That make lots of sense.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or you could check Possion Model.(which can take care both category and continuous variable)&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/kb/24/188.html" target="_blank"&gt;http://support.sas.com/kb/24/188.html&amp;nbsp;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Oct 2016 07:45:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Assigning-weights-to-variables-to-calculate-rank-score-of-a/m-p/306195#M4568</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-10-21T07:45:16Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning weights to variables to calculate rank/score of a customer</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Assigning-weights-to-variables-to-calculate-rank-score-of-a/m-p/306200#M4569</link>
      <description>&lt;P&gt;Or Check this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Overview: PRINQUAL Procedure&lt;BR /&gt;The PRINQUAL procedure performs principal component analysis (PCA) of qualitative, quantitative, or&lt;BR /&gt;mixed data. PROC PRINQUAL is based on the work of Kruskal and Shepard (1974); Young, Takane, and&lt;/P&gt;</description>
      <pubDate>Fri, 21 Oct 2016 07:35:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Assigning-weights-to-variables-to-calculate-rank-score-of-a/m-p/306200#M4569</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-10-21T07:35:57Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning weights to variables to calculate rank/score of a customer</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Assigning-weights-to-variables-to-calculate-rank-score-of-a/m-p/307220#M4591</link>
      <description>&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;,&lt;BR /&gt;Is there any way we could use proc varclus for all types of variables?&lt;BR /&gt;&lt;BR /&gt;I looked at the documentation and it says it takes all the numerical values by default.&lt;BR /&gt;&lt;BR /&gt;My dataset has both categorical and continuous variables. Also some of the categorical variables coded as 1,0.</description>
      <pubDate>Tue, 25 Oct 2016 19:01:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Assigning-weights-to-variables-to-calculate-rank-score-of-a/m-p/307220#M4591</guid>
      <dc:creator>vsharipriya</dc:creator>
      <dc:date>2016-10-25T19:01:41Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning weights to variables to calculate rank/score of a customer</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Assigning-weights-to-variables-to-calculate-rank-score-of-a/m-p/307223#M4592</link>
      <description>Thanks, &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;.&lt;BR /&gt;Looks like Possion Model works for supervised model. I don't have any target variable in my data , that is related to other variables.&lt;BR /&gt;&lt;BR /&gt;I want each observation to get a weight based on the weights of other variables, exactly like your first answer-&lt;BR /&gt;&lt;BR /&gt;"Suppose for the first PC,which occupy %60&lt;BR /&gt;&lt;BR /&gt;y1=0.5v1+0.8v2-0.2v3 ,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Suppose for the second PC,which occupy %40&lt;BR /&gt;&lt;BR /&gt;y2=0.5v1+0.8v2-0.2v3 ,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;the final score maybe : Y=0.6*Y1+0.4*Y2 "&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;But here , Y is my each observation, and X are my variables, coefficients being the weights.&lt;BR /&gt;&lt;BR /&gt;X's are both categorical and continuous.</description>
      <pubDate>Tue, 25 Oct 2016 19:17:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Assigning-weights-to-variables-to-calculate-rank-score-of-a/m-p/307223#M4592</guid>
      <dc:creator>vsharipriya</dc:creator>
      <dc:date>2016-10-25T19:17:25Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning weights to variables to calculate rank/score of a customer</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Assigning-weights-to-variables-to-calculate-rank-score-of-a/m-p/307283#M4596</link>
      <description>&lt;P&gt;Do you take a look at&amp;nbsp;&lt;SPAN&gt;PRINQUAL Procedure ?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2016 02:06:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Assigning-weights-to-variables-to-calculate-rank-score-of-a/m-p/307283#M4596</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-10-26T02:06:09Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning weights to variables to calculate rank/score of a customer</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Assigning-weights-to-variables-to-calculate-rank-score-of-a/m-p/425285#M6509</link>
      <description>&lt;P&gt;There are many approaches as you can see...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;shared, the VARCLUS procedure can help reduce the number of interval variables and can generate cluster scores from mutually exclusive subsets of your continuous variables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;shared, the PRINQUAL procedure provides approaches to including both interval and categorical data in a clustering solution.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The approach you choose must take into account how concerned you with assigning some meaning to the scores.&amp;nbsp; &amp;nbsp;In general, it is easy to come up with formulas to create scores for individuals based on categorical and/or interval inputs.&amp;nbsp; It is harder to determine what those scores actually mean in the case of your business problem.&amp;nbsp; In general, you must determine how to weight different factors based on your business objectives.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Principal Components creates a new set of dimensions for the data with the nice set of properties that the dimensions are uncorrelated with each other and that each subsequent dimension explains less data the previous dimension, but every single variable is included in the equation for each principle component (or PC).&amp;nbsp; &amp;nbsp;The equation for each PC is&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;PC(k) = X*Beta(k)&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;where&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; PC(k) = vector of scores for Principal Component k&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; X =&amp;nbsp; data matrix containing values of each variable for each observation&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;B(k) = vector of coefficients for principal component k&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;rather than&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;SPAN&gt;&amp;nbsp;PC(i) = X*beta(i) + error&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;since there is no error term -- just a restructuring of the space into different dimensions.&amp;nbsp; Variable Clustering is somewhat simpler in that it creates mutually exclusive groups of variables so that the Variable Cluster score depends only on those variables in that cluster rather than on every variable in the data like PCs do.&amp;nbsp; &amp;nbsp;Variable Clustering creates Principal Components as part of its algorithm to create Variable Cluster scores but limits the variables to those variables in the cluster.&amp;nbsp; As a result, Variable Cluster scores cannot perfectly represent all of the original data but the allows the user to choose one or two variables from each cluster (e.g. the most highly correlated variable with the cluster score and least correlated variable with the cluster score) to use as surrogates for all of the variables in the cluster.&amp;nbsp; Using the simpler set of variables allows easier interpretation and avoids redundancy of inputs.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Rather than cramming categorical variables into this mix, it might be better to use Variable Clustering to reduce the interval inputs and retain the categorical inputs assuming the categorical inputs are not poorly distributed (e.g. large numbers of levels, large proportion of levels with trivial amounts of data, etc...).&amp;nbsp; The fact that you can include these in a reduction method like PRINQUAL does not mean that you should!&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regarding creating a score to rank customers, the fact that your approach is unsupervised means that the results must be interpreted from a business standpoint alone as there is no 'correct' score.&amp;nbsp; I could create a Farmer Score using&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; Farmer Score = 2 * (number of chickens) + 6 * (number of cows)&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;but what that score means is a business interpretation rather than an analytical interpretation.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To be fair, assessing customer value always difficult.&amp;nbsp; Suppose an airline has two customers on a flight:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Customer A:&lt;/P&gt;
&lt;P&gt;* seated in first class&lt;/P&gt;
&lt;P&gt;* has platinum status with the airline awards&lt;/P&gt;
&lt;P&gt;* joined the admirals club&lt;/P&gt;
&lt;P&gt;* has high income&amp;nbsp;&lt;/P&gt;
&lt;P&gt;* wearing a suit&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Customer B:&lt;/P&gt;
&lt;P&gt;* flying in coach&lt;/P&gt;
&lt;P&gt;* has not joined the awards program&lt;/P&gt;
&lt;P&gt;* not an admirals club member&lt;/P&gt;
&lt;P&gt;* appears to be young, possibly just out of college&lt;/P&gt;
&lt;P&gt;* wearing a t-shirt and jeans&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you had to ask one of the two customers to get off the plane, which customer do you choose?&amp;nbsp; &amp;nbsp;One thing to ask yourself is which customer is more valuable?&amp;nbsp; &amp;nbsp;The answer to the latter question depends on what time frame you are considering.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If your time frame is...&lt;/P&gt;
&lt;P&gt;... past flights - clearly Customer A is more valuable since they have achieved a top status level due to sufficient flights&amp;nbsp;&lt;/P&gt;
&lt;P&gt;... the current flight - you might choose customer A but who knows whether or not customer A is using free points for this flight which would associate more current revenue to Customer B&lt;/P&gt;
&lt;P&gt;... future flights - this is even murkier since Customer A might be at the end of his career and/or moving to a non-traveling job while Customer B might be joining a consulting firm and will be sent on trips all over the globe during regular business days when traveling is most expensive&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Of course, Customer A might cause a lot more stink since they have preferred status but they still might not actually be the most valuable to the companies current and/or future business success in many scenarios.&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cordially,&lt;BR /&gt;Doug&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jan 2018 16:16:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Assigning-weights-to-variables-to-calculate-rank-score-of-a/m-p/425285#M6509</guid>
      <dc:creator>DougWielenga</dc:creator>
      <dc:date>2018-01-12T16:16:26Z</dc:date>
    </item>
  </channel>
</rss>

