Let's say that I have 2 variables: A (as the input) and C (as the output)
So it's A -> C
There's also another variable B, and
corr(A, B) > corr(A, C)
corr(C, B) > corr(A, C)
Would A -> B -> C get better performance with the existing model?
In other words, does this B have any information gain?
Does this middle variable have any information gain?
120 views Asked by Chas At
1
There are 1 answers
Related Questions in ENTROPY
- Deterministic CTR_DRBG in OpenSSL
- rouble with mounting Python code to FUSE: No response and prolonged processing ---
- Shannon's entropy on FTIR data
- Dissimilarity Index using Segregation Package
- Arithmetic encoding implementation outputting chars
- Python entropy calculation of trigrams
- JS divergence code is giving wrong answers
- I can't work out the entropy formula for TraMineR
- Is there an error with my sample entropy estimator for 3D multivariate signal?
- Use "/dev/urandom" with GMP library to generate a very big random number
- Can the total Entropy of all clusters be greater than 1, after classification?
- How can I calculate in MATLAB the entropy and mutual information of points moving through 3D space?
- Calculating Chao-Shen corrected Jensen-Shannon Divergence
- KL divergence corrected for limited sample size bias
- Error: Image dimensions and neighborhood dimensions do not match
Related Questions in INFORMATION-GAIN
- what R Code to calculate the entropy for each level in a categorical variable
- Information gain for decision tree in Weka
- Does this middle variable have any information gain?
- In R, how do I run a balanced 10-fold CV information gain test for feature selection on imbalanced 2-class data?
- I got error message 'Boolean array expected for the condition, not int64'. Can anybody help me solve this problem?
- How to save the result of feature selection in Weka?
- What should I do in case I have dominant feature in XGB model?
- calculating entropy and information gain python
- How to Use TF-IDF and combine it with Information Gain for feature selection in text classification?
- Feature importance 'gain' in XGBoost
- Visualizing decision jungle in Azure Machine Learning Studio
- How can I receive from a column data points with the highest Information (Gain)?
- MLR package: generateFilterValuesData chi.squared and information.gain
- How to use functions of library in python?
- Getting negative information gain with Laplace smoothing
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
The information gained about C, given A is:
log(1/P(A,C)). The information gained about C, given both A and B is:log(1/P(A,B,C)). So as long asP(A,C) > P(A,B,C), there will be more information gained by including B.Now, whether or not that's the case depends on what you're using for the
corrmetric. But if A/C are dependent on B, there will be at least some values of B which are giving information gain. In general, I'd always include dependent variables in a model, unless the dependence is too strong, in which case some models may not work as well (e.g. neural networks).