How does the C4.5 algorithm deal with missing values and attribute value on continuous interval? Also, how is a decision tree pruned? Could someone please explain with the help of an example.
c4.5 algorithm missing values
3.9k Views Asked by Shubhi Shrivastava At
1
There are 1 best solutions below
Related Questions in ALGORITHM
- How to Join one table to another table by zipcode?
- Saving Data form in CakePHP
- Cakephp link to view a page in sub folder
- DataBase Error Cakephp
- how to send an email to a user in cakephp 2.x
- how to use Where condition in Pagination using cakephp
- Impossible to show CakePhp CheckBox
- Can i convert whole cakephp website to web services?
- CakePHP form tampering
- Inserting with empty string in cakePHP
Related Questions in DECISION-TREE
- How to Join one table to another table by zipcode?
- Saving Data form in CakePHP
- Cakephp link to view a page in sub folder
- DataBase Error Cakephp
- how to send an email to a user in cakephp 2.x
- how to use Where condition in Pagination using cakephp
- Impossible to show CakePhp CheckBox
- Can i convert whole cakephp website to web services?
- CakePHP form tampering
- Inserting with empty string in cakePHP
Related Questions in C4.5
- How to Join one table to another table by zipcode?
- Saving Data form in CakePHP
- Cakephp link to view a page in sub folder
- DataBase Error Cakephp
- how to send an email to a user in cakephp 2.x
- how to use Where condition in Pagination using cakephp
- Impossible to show CakePhp CheckBox
- Can i convert whole cakephp website to web services?
- CakePHP form tampering
- Inserting with empty string in cakePHP
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)
Popular # Hahtags
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?
Say we built a decision tree from the canonical example of whether one should play golf based on the weather conditions. We may have a training dataset like this:
And use it to build a decision tree that may look something like this:
Sunny
but did not have a value for the attributeHumidity
. Also, suppose that our training data had 2 instances for which the outlook wasSunny
,Humidity
was below 75, and a label ofPlay
. Furthermore, suppose the training data had 3 instances where the outlook wasSunny
,Humidity
was above 75, and had a label ofDon't Play
. So for the test instance with the missingHumidity
attribute, the C4.5 algorithm would return a probability distribution of[0.4, 0.6]
corresponding to[Play, Don't Play]
.Humidity
attribute above. The C4.5 algorithm tested the information gain provided by the humidity attribute by splitting it at 65, 70, 75, 78...90 and found that performing the split at 75 provided the most information gain.For more information, I would suggest this excellent resource I used to write my own Decision Tree and Random Forest algorithm: https://cis.temple.edu/~giorgio/cis587/readings/id3-c45.html