Now this is a topic I desperately need. Can anyone here by any chance explain why would one choose predictors in multilinear regression that are NOT correlated to the target? I am having trouble understanding paper [1] where authors avoid using predictors that are correlated to target. Target is ozone concentration shown by referent instrument and predictors are low cost sensor outputs. [1] https://www.sciencedirect.…
The issue is intra-predictor correlation. In the extreme case that a predictor is duplicated, the correct beta might be {beta a, beta (1-a)} for a in [0, 1], which an algorithm may not estimate in a stable manner. A significant degree of correlation introduces this general problem.
Types of Regression Analysis
31–40 of 76 posts
Re: Types of Regression Analysis
#32Now this is a topic I desperately need. Can anyone here by any chance explain why would one choose predictors in multilinear regression that are NOT correlated to the target? I am having trouble understanding paper [1] where authors avoid using predictors that are correlated to target. Target is ozone concentration shown by referent instrument and predictors are low cost sensor outputs. [1] https://www.sciencedirect.…
When predictors are correlated with each other you get multicollinearity potentially leading to incorrect statistical inferences.
Re: Types of Regression Analysis
#33Earlier quoted context omitted.
Why wouldn't you just run weka or something locally?
I just want to provide the data and let a service decide the best algorithm. Weka and various ML tools require you select the algorithm and do the A/B testing on your own. There's an opportunity for an Optimizely of ML.
You will find a model that looks good on your data. It will not be the model you should use.
Re: Types of Regression Analysis
#34Earlier quoted context omitted.
The issue is intra-predictor correlation. In the extreme case that a predictor is duplicated, the correct beta might be {beta a, beta (1-a)} for a in [0, 1], which an algorithm may not estimate in a stable manner. A significant degree of correlation introduces this general problem.
So say you have 3 predictors that have high intra predictor correlation. Can you still pick one of them, and discard the remaning 2? Or you cant pick any one of them?
Re: Types of Regression Analysis
#35Earlier quoted context omitted.
So say you have 3 predictors that have high intra predictor correlation. Can you still pick one of them, and discard the remaning 2? Or you cant pick any one of them?
You can, but why trash information that is present when you can leverage it with a different approach?
Re: Types of Regression Analysis
#36Now this is a topic I desperately need. Can anyone here by any chance explain why would one choose predictors in multilinear regression that are NOT correlated to the target? I am having trouble understanding paper [1] where authors avoid using predictors that are correlated to target. Target is ozone concentration shown by referent instrument and predictors are low cost sensor outputs. [1] https://www.sciencedirect.…
The issue is intra-predictor correlation. In the extreme case that a predictor is duplicated, the correct beta might be {beta a, beta (1-a)} for a in [0, 1], which an algorithm may not estimate in a stable manner. A significant degree of correlation introduces this general problem.
Re: Types of Regression Analysis
#37Earlier quoted context omitted.
When predictors are correlated with each other you get multicollinearity potentially leading to incorrect statistical inferences.
Thanks for the answer. And what is the correct approach here, if you can only chose/not chose predictor in final set? Discard all multicollinear predictors or pick just one of them?
As the article mentions however, there are regression methods meant for these situations (e.g. ridge regression).
Re: Types of Regression Analysis
#38Earlier quoted context omitted.
The issue is intra-predictor correlation. In the extreme case that a predictor is duplicated, the correct beta might be {beta a, beta (1-a)} for a in [0, 1], which an algorithm may not estimate in a stable manner. A significant degree of correlation introduces this general problem.
So say you have 3 predictors that have high intra predictor correlation. Can you still pick one of them, and discard the remaning 2? Or you cant pick any one of them?
Using lasso (also mentioned in TFA) would prefer to pick the best of the three and drop the others.
Using elastic net would be a combination of both.
Note, though, that any method other than simple regression has tuning parameters -- depending on those, you could still end with result equivalent to plain least squares.
Re: Types of Regression Analysis
#39Earlier quoted context omitted.
When predictors are correlated with each other you get multicollinearity potentially leading to incorrect statistical inferences.
Thanks for the answer. And what is the correct approach here, if you can only chose/not chose predictor in final set? Discard all multicollinear predictors or pick just one of them?
Re: Types of Regression Analysis
#40Are there any ML APIs or web services that accept a vector and run various regression scenarios to identify optimal fit? I suppose vectors for both training and testing would be required. Would gladly pay $1-$5 per batch for a service to do this.