-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adds test for collinearity to the econometrics
menu
#5018
Adds test for collinearity to the econometrics
menu
#5018
Conversation
Adds `vif` command, which tests collinearity by calculating the variance inflation factor.
Just calling
Autocomplete is missing for columns, shouldn't be just when I type
More importantly, I think the default should be to show all columns. The purpose of VIF is to see if other variables seem to be able to estimate the value of the variable. If you only include a subset, the results will definitely vary where, in most cases, you would like to use your entire dataset. Then, with This result (from |
Issue with error handling when only one dataset input:
|
Looks like a rogue print:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice! Thanks for making all the changes!
Description
Adds
vif
command, which tests collinearity by calculating the variance inflation factor. It also rearranges the commands in the menu by adding aAssumption Testing
section.How has this been tested?
By using it in the SDK and in the terminal.
Testing it on data with known collinearity. Use for instance the following test case:
The result should be and are:
Checklist:
feature/feature-name
orhotfix/hotfix-name
.Others