0
votes
1answer
54 views

kmeans classification to predetermined centroids

I am trying to assign datapoints (through euclidean distance) to a known, predefined, set of center points, assigning points to the fixed center point that is closest. I have the feeling that i am ...
1
vote
0answers
92 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 ...
-1
votes
1answer
70 views

Classification Tree in R

Am totally new to R and I am trying to make use of classification trees for classifying some data. What has me confused is what library to make use of. Should I make use of rpart or tree?
1
vote
2answers
105 views

Classification/Prediction in R

I have a corpus of N documents classified as spam / no-spam. I am following the standard procedure to pre-process the data in R(code here). The pre-processing ends with a DocumenTermMatrix using ...
4
votes
2answers
71 views

Running a list of functions with different params with a single command

I am looking to test outcome of different regression/classification algorithms (i.e. svm, nnet, rpart, randomForest, naiveBayes, etc.) on the same data, to see which works better. But I need to have ...
0
votes
0answers
65 views

Setting Random seeds do not affect classification methods C5.0 and ctree

I want to compare between two different classification methods, namely ctree and C5.0 in the libraries partyand c50 respectively, the comparison is to test their sensitivity to the initial start ...
0
votes
0answers
53 views

Library to train GMMs from MFCC

I am trying to build a basic Emotion detector from speech using MFCCs, their deltas and delta-deltas. A number of papers talk about getting a good accuracy by training GMMs on these features. I ...
0
votes
1answer
210 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
1answer
156 views

Sensitivity /Specificity versus cutoff point plot in R?

Is there a package for making a sensitivity/specificity versus cutoff point plot in R? Preferable one that takes a glm object as an argument? Something like this is what i am looking for: PS: Does ...
0
votes
0answers
56 views

Has anyone implemented Stan Nikolov's nonparametric method for classifying time series algorithm in R?

I would like to implement Stan Nikolov's nonparametric method for classifying time series in R. For the pseudocode, see page 30 of this document. Has anyone done this yet?
0
votes
1answer
112 views

Trees in R: regression vs classification

I am using the tree library in R, but when I fit the data into the tree command, sometimes I get a regression tree and sometimes a classification tree. What is this about? Thanks!
0
votes
2answers
502 views

R randomForest for classification

I am trying to do classification with randomForest, but I am repeatedly getting an error message for which there seems to be no apparent solution (randomForest has worked well for me doing regression ...
1
vote
0answers
133 views

Classification with deal (Bayes-network)

I am working with multiple binary vectors e.g., A,B,C,D,E,F,G,H. I want to find the classification between them. I have tried the following: log_data<-read.csv(choose.files(), as.is = T, header ...
1
vote
1answer
143 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") ...
3
votes
1answer
110 views

Numerical classifier (?) Weka / R

I have a numeric dataset (as a database table) with a "n to m" relation. For example: A | B ----- 1 | 1 1 | 2 1 | 9 4 | 2 7 | 8 7 | 11 And I would like to "train" a classifier (using weka?) to tell ...
1
vote
1answer
155 views

Random Forest in R - many classes

I want to do a multilabel classification with R randomForest. I have ten classes A..J, I found examples how to predict a single class, like: r = randomForest(J ~., data=train, importance=TRUE, ...
2
votes
1answer
453 views

Classification with naiveBayes (e1071) does not work ($levels returns NULL)

I use naiveBayes (e1071 http://en.wikibooks.org/wiki/Data_Mining_Algorithms_In_R/Classification/Na%C3%AFve_Bayes) for classifying my data set (Classification class: "class" 0/1). Here is what I do: ...
0
votes
0answers
117 views

How can I do a classifer in LDA (manual)

I'm trying to make the classification rule of LDA in R , this is using the Euclidean's distance, g(x)= t(w)x - wo, w is my eigenvector, x my test data, wo the mean of the two classes. My question is, ...
0
votes
1answer
530 views

Multiclass ROC curves in R

I'm new to the concept of ROC curves. I've tried to understand it by reading a few tutorials on the web. I found a really good example here in python which was helpful. I want to plot a ROC curve for ...
2
votes
1answer
140 views

Other output from classification result by package tree needed

The output from tree classification by package tree of a class target field with several class values looks like this: 30-39 40-49 50-59 60plus to29 1 0.1723497 0.2145071 ...
0
votes
1answer
172 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 ...
0
votes
4answers
983 views

Random Forest: high accuracy by one class and very low accuracy by the other

I am new to random forest classifier. I am using it to classify a dataset that has two classes. - The number of features is 512. - The proportion of the data is 1:4. I.e, 75% of the data is from the ...
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.
2
votes
1answer
283 views

Simple discriminant analysis in R using the lda function fails

I'm trying to conduct a discriminant analysis and keep running into the following error: Error in sqrt((n * prior) * fac) * scale(group.means, center = xbar, scale = FALSE) %*% : non-conformable ...
1
vote
1answer
305 views

Reading in high dimensional data into R without use of data frame

I have very sparse high dimensional (40k observations, 20k dimensions) text data in ARFF format generated by WEKA. There are 2 ARFF readers available in R via RWeka and foreign packages. Problem ...
0
votes
1answer
136 views

R replace values with bins

I have a df with integer values. For purposes of classification, I'd like to replace this df with a simpler one that has pre-determined intervals instead of integers. How do I do this efficiently? An ...
2
votes
1answer
3k views

classification in R

I am trying to do naive bayes classification in R. I have seen this example in following link. http://en.wikibooks.org/wiki/Data_Mining_Algorithms_In_R/Classification/Na%C3%AFve_Bayes Only 2 lines ...
7
votes
2answers
2k views

How to Interpret Predict Result of SVM in R?

I'm new to R and I'm using the e1071 package for SVM classification in R. I used the following code: data <- loadNumerical() model <- svm(data[,-ncol(data)], data[,ncol(data)], gamma=10) ...
3
votes
2answers
374 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
3k views

Classification functions in linear discriminant analysis in R

After completing a linear discriminant analysis in R using lda(), is there a convenient way to extract the classification functions for each group? From the link, These are not to be confused ...
4
votes
1answer
767 views

Resolving a 'model empty' error in cross-validation for SVM classification when using the CMA Bioconductor package for R

I am using the Bioconductor package CMA to perform internal, Monte Carlo cross-validation (MCCV) on SVM classifiers in a microarray dataset. CMA internally uses the e1071 R package for the SVM work. ...
2
votes
1answer
357 views

How to get the survival objects being created by the ctree?

I would like to get the survival objects which are created by the ctree function. The reason is that I would like to get the vectors which describe the curves in each leaf of the tree. Does anyone ...
1
vote
3answers
1k views

Decision Trees For Document Classification

Hi I wanted to know that is it possible to use decision trees for document classification and if yes then how should be the data representation be? I know the use of R package party for Decision ...