3 new function for Multiple Linear Regression Analysis#44
Open
RenatoValencia wants to merge 10 commits intomhamano:masterfrom
Open
3 new function for Multiple Linear Regression Analysis#44RenatoValencia wants to merge 10 commits intomhamano:masterfrom
RenatoValencia wants to merge 10 commits intomhamano:masterfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Starting from the idea that data could have values or not in the response variable and it means we have training set and test set (with empty values for response variable), we normally want to fit a model with training data to predict test data. Right now the model fit and predict everything with all data!
Multiple regression model is based on Multiple regression analysis, but use eventually only training set, normalize data (but not the response variable) and finally take only predictor variables with more than |0.3| correlation coefficient for don't use variable that are not relevant. User can see which variable is refused.
Multiple regression prediction is based on line chart multiple regression line and fit the model like 1) but show a histogram with only the predicted values (test data). If we have only training set or only test set it doesn't show anything.
The same like 2) but show data on a table (could be more easy to check values).