1
vote
1answer
33 views

How to specify the depth of a regression tree in matlab?

I am using the regression tree (http://www.mathworks.co.uk/help/stats/classregtree.html) to classify some data. My data has 9 features, however the regression tree will give me a decision tree only ...
1
vote
0answers
101 views

Interpret R output Rpart classification tree surrogate splits

Surrogate splits: ## bmi < 21.51 to the right, agree=0.858, adj=0.632, (0 split) I understand that this split send cases to the right child node based on a bmi value of < 21.51 ...
0
votes
1answer
81 views

how to generate rules from decision tree in data mining?

I have code to create decision tree from data set. i am using weather data set in weka examples. how can i generate the rules from the decision tree in java? Data set:: @relation weather @attribute ...
1
vote
1answer
56 views

Perfect decision tree classification

Imagine that the universe of all known mappings between the values of a set of variables V and a set of tag names T (classification labels) was known. Further, assume that the total space of unique ...
0
votes
1answer
106 views

Implementing parameters to meta classifier in Weka

If I am currently using a Weka decision tree (or other) classifier as follows in my Java code: // Get training and testing data. Instances train = new Instances ("from training file"); ...
0
votes
0answers
13 views

Getting started on Boolean structured query search engine?

Not sure exactly what it's called (that by itself should make a good start) but I'm wanting to get a basic understanding of web search queries that use Boolean decision trees. For example, I can type ...
0
votes
1answer
237 views

How to handle continuous and discrete variables in 'rpart' - decision trees using R?

I am creating some decision trees using the package rpart in R. I have discrete variables like age, no.of.children in my dataset. But the resulting decision tree has these variables n decimals. Which ...
0
votes
2answers
166 views

Interpretation of classification in Weka

I would like to use Weka to solve my classification problem. I have a set of instances of my training data. Lets say that the data looks like: @relation Relation1 @attribute att1 {val11, val12} ...
0
votes
1answer
30 views

how to find ranges in continuous values for use in building decision tree

I am building a decision tree that uses fields with continuous values (doubles). how should I create the range nodes to build the tree with (finding the best ranges values)
1
vote
1answer
146 views

How to count the observations falling in each node of a tree

I am currently dealing with wine data in MMST package. I have split the whole dataset into training and test and build a tree like the following codes: library("rpart") library("gbm") ...
0
votes
2answers
323 views

How to deal with missing attribute values in C4.5 (J48) decision tree?

What's the best way to handle missing feature attribute values with Weka's C4.5 (J48) decision tree? The problem of missing values occurs during both training and classification. If values are ...
0
votes
1answer
392 views

Matlab: Recursion to get decision tree

I am trying to implement decision tree with recursion: So far I have written the following: From a give data set, find the best split and return the branches, to give more details lets say I have ...
0
votes
2answers
328 views

Designing a clustering process using RapidMiner

I haven't had much experience with machine learning or clustering, so I'm at a bit of a loss as to how to approach this problem. My data of interest consists of 4 columns, one of which is just an id. ...
2
votes
2answers
453 views

Combining Weak Learners into a Strong Classifier

How do I combine few weak learners into a strong classifier? I know the formula, but the problem is that in every paper about AdaBoost that I've read there are only formulas without any example. I ...
0
votes
1answer
418 views

Decision Stumps

I'd like to implement a java application using AdaBoost wich classifies if an elephant is African or Asian Elephant. My Elephant class has fields: int size; int weight; double sampleWeight; ...
0
votes
1answer
458 views

Difference between correctly / incorrectly classified instances in decision tree and confusion matrix in Weka

I have been using Weka’s J48 decision tree to classify frequencies of keywords in RSS feeds into target categories. And I think I may have a problem reconciling the generated decision tree with the ...
1
vote
1answer
197 views

Weka filteredClassifier arrayOutOfBoundsException

I am trying to use the filtered classifier on data of the following format: real,real,real,...,nominal where I have 138 real values and a single nominal string representing the class. I am using J48 ...
0
votes
4answers
371 views

How to improve acuracy of decision tree in matlab

I have a set of data which I classify them in matlab using decision tree. I divide the set into two parts; one training data(85%) and the other test data(15%). The problem is that the accuracy is ...
0
votes
2answers
679 views

Training a Decision Tree in MATLAB over binary train data

I want to train a decision tree in MATLAB for binary data. Here is a sample of data I use. traindata <87*239> [array of data with 239 features] 1 0 1 0 0 0 1 1 0 0 1 0 1 0 1 1 1 1 1 0 0 0 1 1 0 ...
2
votes
1answer
1k views

Advantages of SVM over decion trees and AdaBoost algorithm

I am working on binary classification of data and I want to know the advantages and disadvantages of using Support vector machine over decision trees and Adaptive Boosting algorithms.
0
votes
1answer
175 views

Classifcation/Decision Trees and Choosing Splits

This is a very basic example. But I am doing some data analysis and am continually finding myself writing very similar SQL count queries like so to generate probability tables. My tables are defined ...
3
votes
2answers
2k views

Different decision tree algorithms with comparison of complexity or performance

I am doing some researches about data mining and precisely decision trees. I would like to know if there are multiple algorithms to build a decision tree (or just one?), and which is better (by ...
6
votes
1answer
3k views

How to compute error rate from a decision tree?

Does anyone know how to calculate the error rate for a decision tree with R? I am using the rpart() function.
0
votes
0answers
238 views

Scikit not giving confusion matrix for Decision Tree classifier

I am using scikit package for twitter sentiment analysis. I am successful in training and predicting using Decision Tree classifier in the scikit package. But somehow I get all 0's in my confusion ...
0
votes
1answer
227 views

Pruning decision tree

How to prune decision tree build with ID3 when there are too few examples in the training set. I cannot divide it into training, validation and test set, so that is out of the question. Are there ...
5
votes
1answer
4k views

How to retrieve class values from WEKA using MATLAB

I'm trying to retrieve classes from WEKA using MATLAB and WEKA API. All looks fine but classes are always 0. Any idea ?? My data set has 241 atributes, applying WEKA to this dataset I'm obtaining ...
3
votes
2answers
377 views

How to remove training data from party:::ctree models?

I created several ctree models (about 40 to 80) which I want evaluate rather often. An issue is that the model objects are very big (40 models require more than 2.8G of memory) and it appears to me, ...
2
votes
2answers
2k views

Visualizing Weka classification tree

I am using few data sets available online and trying to visualize tree. However, it does not let me visualize tree option at all. Could anyone please guide me how to get the tree diagram in weka by ...
0
votes
2answers
554 views

parameter optimization for classifier algorithm

It is said that different algorithms have different parameters. I don't really see this as true, say if it is a tree decision algorithm and naive bayesian algorithm, what is the parameter for each? ...
7
votes
1answer
607 views

Working with decision trees

I know tl;dr; I'll try to explain my problem without bothering you with ton's of crappy code. I'm working on a school assignment. We have pictures of smurfs and we have to find them with foreground ...
1
vote
3answers
181 views

The termination criteria when building decision tree

I am writing my own code for a decision tree. I need to decide on when to terminate the tree building process. I could think of limiting the height of the tree, but this seems trivial. Could anyone ...
7
votes
1answer
4k views

How to implement decision tree with c# (visual studio 2008) - Help

I have a decision tree that i need to turn to a code in C# The simple way of doing it is using if-else statements but in this solution i will need to create 4-5 nested conditions. I am looking for a ...
1
vote
2answers
519 views

In ID3 implementation, at which point the recursion in Algorithm should stop

In ID3 implementation, at which point the recursion in Algorithm should stop.
3
votes
3answers
391 views

machine learning and code generator from strings

The problem: Given a set of hand categorized strings (or a set of ordered vectors of strings) generate a categorize function to categorize more input. In my case, that data (or most of it) is not ...
2
votes
1answer
2k views

Learning decision trees on huge datasets

I'm trying to build a binary classification decision tree out of huge (i.e. which cannot be stored in memory) datasets using MATLAB. Essentially, what I'm doing is: Collect all the data Try out n ...