Can the “vif” function in Stata be used to estimate collinearity in regression models?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty{ margin-bottom:0;
}
up vote
3
down vote
favorite
I watched a video on collinearity and Stata, and it seems the author of the video is trying to get the variance inflation factor (vif) below 4, as a number above 4 would indicate collinearity. Is it this simple to assess the collinearity of my model, or is there more work to it?
I'll be honest and say I am struggling here with my project, containing regression analysis, and it seems for every answer I unlock, two more questions appear.
regression stata
New contributor
add a comment |
up vote
3
down vote
favorite
I watched a video on collinearity and Stata, and it seems the author of the video is trying to get the variance inflation factor (vif) below 4, as a number above 4 would indicate collinearity. Is it this simple to assess the collinearity of my model, or is there more work to it?
I'll be honest and say I am struggling here with my project, containing regression analysis, and it seems for every answer I unlock, two more questions appear.
regression stata
New contributor
3
It's unfortunately not that simple. Simple rules abound in statistics, but they are never universally true and following some of them will impair your abilities to analyze data. This is one of them. Assessing collinearity is somewhat tricky: entire books have been written about it. The best, and the one subsequently referenced by all those that followed, was Belsley, Kuh and Welsch, Regression Diagnostics (1980).
– whuber♦
Dec 2 at 19:22
add a comment |
up vote
3
down vote
favorite
up vote
3
down vote
favorite
I watched a video on collinearity and Stata, and it seems the author of the video is trying to get the variance inflation factor (vif) below 4, as a number above 4 would indicate collinearity. Is it this simple to assess the collinearity of my model, or is there more work to it?
I'll be honest and say I am struggling here with my project, containing regression analysis, and it seems for every answer I unlock, two more questions appear.
regression stata
New contributor
I watched a video on collinearity and Stata, and it seems the author of the video is trying to get the variance inflation factor (vif) below 4, as a number above 4 would indicate collinearity. Is it this simple to assess the collinearity of my model, or is there more work to it?
I'll be honest and say I am struggling here with my project, containing regression analysis, and it seems for every answer I unlock, two more questions appear.
regression stata
regression stata
New contributor
New contributor
edited Dec 2 at 19:34
COOLSerdash
15.9k75192
15.9k75192
New contributor
asked Dec 2 at 19:14
Paze
1354
1354
New contributor
New contributor
3
It's unfortunately not that simple. Simple rules abound in statistics, but they are never universally true and following some of them will impair your abilities to analyze data. This is one of them. Assessing collinearity is somewhat tricky: entire books have been written about it. The best, and the one subsequently referenced by all those that followed, was Belsley, Kuh and Welsch, Regression Diagnostics (1980).
– whuber♦
Dec 2 at 19:22
add a comment |
3
It's unfortunately not that simple. Simple rules abound in statistics, but they are never universally true and following some of them will impair your abilities to analyze data. This is one of them. Assessing collinearity is somewhat tricky: entire books have been written about it. The best, and the one subsequently referenced by all those that followed, was Belsley, Kuh and Welsch, Regression Diagnostics (1980).
– whuber♦
Dec 2 at 19:22
3
3
It's unfortunately not that simple. Simple rules abound in statistics, but they are never universally true and following some of them will impair your abilities to analyze data. This is one of them. Assessing collinearity is somewhat tricky: entire books have been written about it. The best, and the one subsequently referenced by all those that followed, was Belsley, Kuh and Welsch, Regression Diagnostics (1980).
– whuber♦
Dec 2 at 19:22
It's unfortunately not that simple. Simple rules abound in statistics, but they are never universally true and following some of them will impair your abilities to analyze data. This is one of them. Assessing collinearity is somewhat tricky: entire books have been written about it. The best, and the one subsequently referenced by all those that followed, was Belsley, Kuh and Welsch, Regression Diagnostics (1980).
– whuber♦
Dec 2 at 19:22
add a comment |
1 Answer
1
active
oldest
votes
up vote
4
down vote
accepted
Questions about code are off-topic, but your question appears to be about colinearity.
Variance inflation factor (VIF) is, indeed, one way to measure colinearity. In my dissertation I gave evidence supporting David Belsley's work which showed that condition indexes and proportion of variance explained have some better properties, but VIF is still pretty good.
I didn't watch the video you linked to, but I'm a bit worried about "trying to get the VIF ....". There are various methods of dealing with colinearity, and which one you choose ought to depend on what you are trying to do. Among the options are:
- Partial least squares (a better option that principal components regression, in my opinion).
- Removing some variables
- Ridge regression
- Getting more data
I can sympathize with your last sentence. Statistics isn't simple.
2
Thank you. I'm an MD student hoping to pursue a PhD after my MD and it seems I have to get an entire new degree to even grasp the statistics part of my research. Is this stuff normally outsourced to statisticians?
– Paze
Dec 2 at 19:29
3
It often is. Certainly once you graduate and start doing research. Sometimes while you are getting the PhD.
– Peter Flom♦
Dec 2 at 19:32
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
accepted
Questions about code are off-topic, but your question appears to be about colinearity.
Variance inflation factor (VIF) is, indeed, one way to measure colinearity. In my dissertation I gave evidence supporting David Belsley's work which showed that condition indexes and proportion of variance explained have some better properties, but VIF is still pretty good.
I didn't watch the video you linked to, but I'm a bit worried about "trying to get the VIF ....". There are various methods of dealing with colinearity, and which one you choose ought to depend on what you are trying to do. Among the options are:
- Partial least squares (a better option that principal components regression, in my opinion).
- Removing some variables
- Ridge regression
- Getting more data
I can sympathize with your last sentence. Statistics isn't simple.
2
Thank you. I'm an MD student hoping to pursue a PhD after my MD and it seems I have to get an entire new degree to even grasp the statistics part of my research. Is this stuff normally outsourced to statisticians?
– Paze
Dec 2 at 19:29
3
It often is. Certainly once you graduate and start doing research. Sometimes while you are getting the PhD.
– Peter Flom♦
Dec 2 at 19:32
add a comment |
up vote
4
down vote
accepted
Questions about code are off-topic, but your question appears to be about colinearity.
Variance inflation factor (VIF) is, indeed, one way to measure colinearity. In my dissertation I gave evidence supporting David Belsley's work which showed that condition indexes and proportion of variance explained have some better properties, but VIF is still pretty good.
I didn't watch the video you linked to, but I'm a bit worried about "trying to get the VIF ....". There are various methods of dealing with colinearity, and which one you choose ought to depend on what you are trying to do. Among the options are:
- Partial least squares (a better option that principal components regression, in my opinion).
- Removing some variables
- Ridge regression
- Getting more data
I can sympathize with your last sentence. Statistics isn't simple.
2
Thank you. I'm an MD student hoping to pursue a PhD after my MD and it seems I have to get an entire new degree to even grasp the statistics part of my research. Is this stuff normally outsourced to statisticians?
– Paze
Dec 2 at 19:29
3
It often is. Certainly once you graduate and start doing research. Sometimes while you are getting the PhD.
– Peter Flom♦
Dec 2 at 19:32
add a comment |
up vote
4
down vote
accepted
up vote
4
down vote
accepted
Questions about code are off-topic, but your question appears to be about colinearity.
Variance inflation factor (VIF) is, indeed, one way to measure colinearity. In my dissertation I gave evidence supporting David Belsley's work which showed that condition indexes and proportion of variance explained have some better properties, but VIF is still pretty good.
I didn't watch the video you linked to, but I'm a bit worried about "trying to get the VIF ....". There are various methods of dealing with colinearity, and which one you choose ought to depend on what you are trying to do. Among the options are:
- Partial least squares (a better option that principal components regression, in my opinion).
- Removing some variables
- Ridge regression
- Getting more data
I can sympathize with your last sentence. Statistics isn't simple.
Questions about code are off-topic, but your question appears to be about colinearity.
Variance inflation factor (VIF) is, indeed, one way to measure colinearity. In my dissertation I gave evidence supporting David Belsley's work which showed that condition indexes and proportion of variance explained have some better properties, but VIF is still pretty good.
I didn't watch the video you linked to, but I'm a bit worried about "trying to get the VIF ....". There are various methods of dealing with colinearity, and which one you choose ought to depend on what you are trying to do. Among the options are:
- Partial least squares (a better option that principal components regression, in my opinion).
- Removing some variables
- Ridge regression
- Getting more data
I can sympathize with your last sentence. Statistics isn't simple.
answered Dec 2 at 19:24
Peter Flom♦
73.7k11105201
73.7k11105201
2
Thank you. I'm an MD student hoping to pursue a PhD after my MD and it seems I have to get an entire new degree to even grasp the statistics part of my research. Is this stuff normally outsourced to statisticians?
– Paze
Dec 2 at 19:29
3
It often is. Certainly once you graduate and start doing research. Sometimes while you are getting the PhD.
– Peter Flom♦
Dec 2 at 19:32
add a comment |
2
Thank you. I'm an MD student hoping to pursue a PhD after my MD and it seems I have to get an entire new degree to even grasp the statistics part of my research. Is this stuff normally outsourced to statisticians?
– Paze
Dec 2 at 19:29
3
It often is. Certainly once you graduate and start doing research. Sometimes while you are getting the PhD.
– Peter Flom♦
Dec 2 at 19:32
2
2
Thank you. I'm an MD student hoping to pursue a PhD after my MD and it seems I have to get an entire new degree to even grasp the statistics part of my research. Is this stuff normally outsourced to statisticians?
– Paze
Dec 2 at 19:29
Thank you. I'm an MD student hoping to pursue a PhD after my MD and it seems I have to get an entire new degree to even grasp the statistics part of my research. Is this stuff normally outsourced to statisticians?
– Paze
Dec 2 at 19:29
3
3
It often is. Certainly once you graduate and start doing research. Sometimes while you are getting the PhD.
– Peter Flom♦
Dec 2 at 19:32
It often is. Certainly once you graduate and start doing research. Sometimes while you are getting the PhD.
– Peter Flom♦
Dec 2 at 19:32
add a comment |
Paze is a new contributor. Be nice, and check out our Code of Conduct.
Paze is a new contributor. Be nice, and check out our Code of Conduct.
Paze is a new contributor. Be nice, and check out our Code of Conduct.
Paze is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Cross Validated!
- 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.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2fstats.stackexchange.com%2fquestions%2f379955%2fcan-the-vif-function-in-stata-be-used-to-estimate-collinearity-in-regression-m%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
3
It's unfortunately not that simple. Simple rules abound in statistics, but they are never universally true and following some of them will impair your abilities to analyze data. This is one of them. Assessing collinearity is somewhat tricky: entire books have been written about it. The best, and the one subsequently referenced by all those that followed, was Belsley, Kuh and Welsch, Regression Diagnostics (1980).
– whuber♦
Dec 2 at 19:22