PCA for index construction. Problem with a sign
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I am using R (RStudio) to construct an index/synthetic indicator to evaluate, say, commercial efficiency. I am using the PCA() command from factorMineR package, and using 7 distinct variables. I have previously created similar indexes by calculating the weight of each particular variable over the first component (which can be obtained through PCA()$var$coord[,1]), with no problems, since each variable has a positive weight. However, there is one particular variable that has a weight with an undesired sign: negative. The variable is ‘delivery speed’ and this sign would imply that the greater the speed the less efficient the process. Then, what is going on? How would you amend this issue, preferably still using PCA?
r rstudio pca
add a comment |
I am using R (RStudio) to construct an index/synthetic indicator to evaluate, say, commercial efficiency. I am using the PCA() command from factorMineR package, and using 7 distinct variables. I have previously created similar indexes by calculating the weight of each particular variable over the first component (which can be obtained through PCA()$var$coord[,1]), with no problems, since each variable has a positive weight. However, there is one particular variable that has a weight with an undesired sign: negative. The variable is ‘delivery speed’ and this sign would imply that the greater the speed the less efficient the process. Then, what is going on? How would you amend this issue, preferably still using PCA?
r rstudio pca
A reproducible example code would greatly improve the changes to get an answer.
– Heikki
Nov 22 '18 at 20:10
add a comment |
I am using R (RStudio) to construct an index/synthetic indicator to evaluate, say, commercial efficiency. I am using the PCA() command from factorMineR package, and using 7 distinct variables. I have previously created similar indexes by calculating the weight of each particular variable over the first component (which can be obtained through PCA()$var$coord[,1]), with no problems, since each variable has a positive weight. However, there is one particular variable that has a weight with an undesired sign: negative. The variable is ‘delivery speed’ and this sign would imply that the greater the speed the less efficient the process. Then, what is going on? How would you amend this issue, preferably still using PCA?
r rstudio pca
I am using R (RStudio) to construct an index/synthetic indicator to evaluate, say, commercial efficiency. I am using the PCA() command from factorMineR package, and using 7 distinct variables. I have previously created similar indexes by calculating the weight of each particular variable over the first component (which can be obtained through PCA()$var$coord[,1]), with no problems, since each variable has a positive weight. However, there is one particular variable that has a weight with an undesired sign: negative. The variable is ‘delivery speed’ and this sign would imply that the greater the speed the less efficient the process. Then, what is going on? How would you amend this issue, preferably still using PCA?
r rstudio pca
r rstudio pca
asked Nov 22 '18 at 19:50
LALO365LALO365
1
1
A reproducible example code would greatly improve the changes to get an answer.
– Heikki
Nov 22 '18 at 20:10
add a comment |
A reproducible example code would greatly improve the changes to get an answer.
– Heikki
Nov 22 '18 at 20:10
A reproducible example code would greatly improve the changes to get an answer.
– Heikki
Nov 22 '18 at 20:10
A reproducible example code would greatly improve the changes to get an answer.
– Heikki
Nov 22 '18 at 20:10
add a comment |
1 Answer
1
active
oldest
votes
The sign of variable weights shouldn't matter in PCA. Since on the whole, all of the components perfectly represent the original data (when p < n), for some components it is natural that there will be some positive weights and some negative weights. That doesn't mean that that particular variable has an undesired weight, rather that for that particular extracted signal (say, first principal component) the variable weight is negative.
For a better understanding, let's take the classical 2 dimensional example, which I took from this very useful discussion:
Can you see from the graph that one of the weights will necessary be negative for the 2nd principal component?
Finally, if that variable does actually disturb your analysis, one possible solution would be to apply Sparse PCA. Under cross-validated regularization that method is able to make some of the weights equal to zero. If in your case that negative weight is not significant enough, it might get reduced to zero under SPCA.
I understand the geometric implications of PCA, it is just that I found that sign curious since PCA didn’t previously surprise me with an unexpected sign and actually it is frequently used for index construction. I agree that negative signs derived from PCA are not casual. However, given this personal inconvenient could you suggest me a better procedure (even if it is not PCA) for index construction given a set of variables? I’m currently trying to assign a small weight to this variable with respect to other ones and mantain fixed the other variables' weights
– LALO365
Nov 22 '18 at 21:46
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53437303%2fpca-for-index-construction-problem-with-a-sign%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The sign of variable weights shouldn't matter in PCA. Since on the whole, all of the components perfectly represent the original data (when p < n), for some components it is natural that there will be some positive weights and some negative weights. That doesn't mean that that particular variable has an undesired weight, rather that for that particular extracted signal (say, first principal component) the variable weight is negative.
For a better understanding, let's take the classical 2 dimensional example, which I took from this very useful discussion:
Can you see from the graph that one of the weights will necessary be negative for the 2nd principal component?
Finally, if that variable does actually disturb your analysis, one possible solution would be to apply Sparse PCA. Under cross-validated regularization that method is able to make some of the weights equal to zero. If in your case that negative weight is not significant enough, it might get reduced to zero under SPCA.
I understand the geometric implications of PCA, it is just that I found that sign curious since PCA didn’t previously surprise me with an unexpected sign and actually it is frequently used for index construction. I agree that negative signs derived from PCA are not casual. However, given this personal inconvenient could you suggest me a better procedure (even if it is not PCA) for index construction given a set of variables? I’m currently trying to assign a small weight to this variable with respect to other ones and mantain fixed the other variables' weights
– LALO365
Nov 22 '18 at 21:46
add a comment |
The sign of variable weights shouldn't matter in PCA. Since on the whole, all of the components perfectly represent the original data (when p < n), for some components it is natural that there will be some positive weights and some negative weights. That doesn't mean that that particular variable has an undesired weight, rather that for that particular extracted signal (say, first principal component) the variable weight is negative.
For a better understanding, let's take the classical 2 dimensional example, which I took from this very useful discussion:
Can you see from the graph that one of the weights will necessary be negative for the 2nd principal component?
Finally, if that variable does actually disturb your analysis, one possible solution would be to apply Sparse PCA. Under cross-validated regularization that method is able to make some of the weights equal to zero. If in your case that negative weight is not significant enough, it might get reduced to zero under SPCA.
I understand the geometric implications of PCA, it is just that I found that sign curious since PCA didn’t previously surprise me with an unexpected sign and actually it is frequently used for index construction. I agree that negative signs derived from PCA are not casual. However, given this personal inconvenient could you suggest me a better procedure (even if it is not PCA) for index construction given a set of variables? I’m currently trying to assign a small weight to this variable with respect to other ones and mantain fixed the other variables' weights
– LALO365
Nov 22 '18 at 21:46
add a comment |
The sign of variable weights shouldn't matter in PCA. Since on the whole, all of the components perfectly represent the original data (when p < n), for some components it is natural that there will be some positive weights and some negative weights. That doesn't mean that that particular variable has an undesired weight, rather that for that particular extracted signal (say, first principal component) the variable weight is negative.
For a better understanding, let's take the classical 2 dimensional example, which I took from this very useful discussion:
Can you see from the graph that one of the weights will necessary be negative for the 2nd principal component?
Finally, if that variable does actually disturb your analysis, one possible solution would be to apply Sparse PCA. Under cross-validated regularization that method is able to make some of the weights equal to zero. If in your case that negative weight is not significant enough, it might get reduced to zero under SPCA.
The sign of variable weights shouldn't matter in PCA. Since on the whole, all of the components perfectly represent the original data (when p < n), for some components it is natural that there will be some positive weights and some negative weights. That doesn't mean that that particular variable has an undesired weight, rather that for that particular extracted signal (say, first principal component) the variable weight is negative.
For a better understanding, let's take the classical 2 dimensional example, which I took from this very useful discussion:
Can you see from the graph that one of the weights will necessary be negative for the 2nd principal component?
Finally, if that variable does actually disturb your analysis, one possible solution would be to apply Sparse PCA. Under cross-validated regularization that method is able to make some of the weights equal to zero. If in your case that negative weight is not significant enough, it might get reduced to zero under SPCA.
answered Nov 22 '18 at 20:31
NutleNutle
318217
318217
I understand the geometric implications of PCA, it is just that I found that sign curious since PCA didn’t previously surprise me with an unexpected sign and actually it is frequently used for index construction. I agree that negative signs derived from PCA are not casual. However, given this personal inconvenient could you suggest me a better procedure (even if it is not PCA) for index construction given a set of variables? I’m currently trying to assign a small weight to this variable with respect to other ones and mantain fixed the other variables' weights
– LALO365
Nov 22 '18 at 21:46
add a comment |
I understand the geometric implications of PCA, it is just that I found that sign curious since PCA didn’t previously surprise me with an unexpected sign and actually it is frequently used for index construction. I agree that negative signs derived from PCA are not casual. However, given this personal inconvenient could you suggest me a better procedure (even if it is not PCA) for index construction given a set of variables? I’m currently trying to assign a small weight to this variable with respect to other ones and mantain fixed the other variables' weights
– LALO365
Nov 22 '18 at 21:46
I understand the geometric implications of PCA, it is just that I found that sign curious since PCA didn’t previously surprise me with an unexpected sign and actually it is frequently used for index construction. I agree that negative signs derived from PCA are not casual. However, given this personal inconvenient could you suggest me a better procedure (even if it is not PCA) for index construction given a set of variables? I’m currently trying to assign a small weight to this variable with respect to other ones and mantain fixed the other variables' weights
– LALO365
Nov 22 '18 at 21:46
I understand the geometric implications of PCA, it is just that I found that sign curious since PCA didn’t previously surprise me with an unexpected sign and actually it is frequently used for index construction. I agree that negative signs derived from PCA are not casual. However, given this personal inconvenient could you suggest me a better procedure (even if it is not PCA) for index construction given a set of variables? I’m currently trying to assign a small weight to this variable with respect to other ones and mantain fixed the other variables' weights
– LALO365
Nov 22 '18 at 21:46
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53437303%2fpca-for-index-construction-problem-with-a-sign%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
A reproducible example code would greatly improve the changes to get an answer.
– Heikki
Nov 22 '18 at 20:10