Réponse apportée
Help using perfcurve function!!
This is a rather vague question. You might get more replies if you explain what approaches you are thinking about and what you h...

environ 14 ans il y a | 0

Réponse apportée
Different results when using oobPredict for TreeBagger
See http://www.mathworks.com/matlabcentral/answers/9638-difference-between-individual-and-cumulative-oobmargin-of-treebagger It'...

environ 14 ans il y a | 0

Réponse apportée
how show the clusters graphically?
Huda, when I answered your other question, I suggested that you run 'doc linkage' and gave you a link to the web doc for that fu...

environ 14 ans il y a | 0

Réponse apportée
how use hierarchical clustering with high score
Use *linkage* function with 'complete' method. doc linkage http://www.mathworks.com/help/toolbox/stats/linkage.html

environ 14 ans il y a | 0

Réponse apportée
Normal Distributions: Standard Deviation from Statistics Toolbox vs Standard Deviation computed using std(data)?
'doc text', 'doc title' and 'doc sprintf'. For example: x = randn(1000,1); muhat = normfit(x); histfit(x) title(sp...

environ 14 ans il y a | 0

Réponse apportée
Normal Distributions: Standard Deviation from Statistics Toolbox vs Standard Deviation computed using std(data)?
As Tom pointed out, histfit in the Statistics Toolbox does not return the value of std nor it produces any "figure menu" with an...

environ 14 ans il y a | 0

Réponse apportée
Histogram with normal distribution and fixed-width bins?
This lets you specify the range and bin width: % Generate data N = 100; x = normrnd(0,1,N,1); % Fit [muhat,...

environ 14 ans il y a | 1

Réponse apportée
MANOVAL multivariate statistical analyis ANOVA
The name of the function is manova1, with "one" at the end, not "L".

environ 14 ans il y a | 0

Réponse apportée
How to use append function in treebagger?
You are asking for an online-learning algorithm, that is, one capable of incremental updates. This is a subject for research. I ...

environ 14 ans il y a | 0

Réponse apportée
How to use append function in treebagger?
TreeBagger/append is intended for combining two ensembles grown on the same data. If you have two different sets of data, the be...

environ 14 ans il y a | 0

Réponse apportée
ROC curve for Decision Tree
The empirical ROC curve is computed using a finite set of points, without smoothing. The curve shows a step, either along the se...

environ 14 ans il y a | 0

Réponse apportée
Training and group matrices for classifying data
*classify* needs to estimate either the pooled-in covariance matrix (for linear discriminant) or covariance matrix for each clas...

environ 14 ans il y a | 0

Réponse apportée
How can I display the nodesizes, nodeerrors etc in a classification tree that was fitted with classificationtree.fit ?
Type 'help ClassificationTree' (or 'doc ClassificationTree'). You will see all methods and properties of a ClassificationTree ob...

environ 14 ans il y a | 0

Réponse apportée
modifying results of knnclassify
doc knnsearch

environ 14 ans il y a | 0

Réponse apportée
Question about rescaling in plsregress()
I am no expert on SIMPLS vs NIPALS. But the doc for plsregress states that XLOADINGS = X0'*XSCORES (with a similar relati...

environ 14 ans il y a | 0

Réponse apportée
feature reduction via regression analysis
If you prefer linear regression, use function *stepwisefit* or its new incarnation LinearModel.stepwise. For example, for backwa...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
GMM & EM algorithm for mammogram classification
For your first problem, type 'help gmdistribution/gmdistribution' (note that you need to type gmdistribution twice to get the he...

environ 14 ans il y a | 0

Réponse apportée
parameters estimation using k-means
I don't follow. k-means is used for non-parametric clustering of data. If your data are already clustered, you can use functions...

environ 14 ans il y a | 0

Réponse apportée
Does the function ClassificationTree.fit automatically prune?
I described strategies for learning on imbalanced data in this post http://www.mathworks.com/matlabcentral/answers/11549-leranin...

environ 14 ans il y a | 1

| A accepté

Réponse apportée
treebagger random forest
By setting 'OOBVarImp' to 'on', you fill OOBPermutedVarDeltaError, OOBPermutedVarDeltaMeanMargin, and OOBPermutedVarCountRaiseMa...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
what is indicator function in AdaBoostM1 in Matlab 2012a??
"Indicator function" can mean various things in various contexts.You will not find it anywhere in MATLAB doc for ensemble method...

environ 14 ans il y a | 0

Réponse apportée
Objective function for Lasso
You are asking for a definition of BIC for lasso. This is not really a MATLAB question. You might have better luck posting it to...

environ 14 ans il y a | 0

Réponse apportée
how to cross validate the data and use it for ensemble?
Computing loss on test data and computing loss by cross-validation are two separate tasks. To compute loss on test data, you nee...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
Naive Bayes
If you use ClassificationTree introduced in 2011a, you can use the same syntax with FIT and PREDICT. If you use classregtree, us...

environ 14 ans il y a | 0

Réponse apportée
Naive Bayes
"training" is used to train a classifier (pass it to FIT method), and "sample" is used to test the classifier performance on dat...

environ 14 ans il y a | 1

| A accepté

Réponse apportée
Array of ClassificationTree objects
Use a cell array. Pre-allocate the array by ensemble = cell(rows,1); And then assign using curly brackets: ensemble...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
plz tell the syntax to add noise in the dataset
Use cvpartition to select a known fraction of your data at random. For example, flip class labels in 10% of the data: >> lo...

environ 14 ans il y a | 0

Réponse apportée
Binary classification
You might want to start here http://en.wikipedia.org/wiki/One-class_classification The 1st reference (PhD thesis) gives an overv...

environ 14 ans il y a | 1

| A accepté

Réponse apportée
what is meant by classification edge??.. (Matlab2011a)
Edge can be used to assess the predictive performance of a classifier. Since you don't know how to use it, I suggest that you us...

environ 14 ans il y a | 1

| A accepté

Réponse apportée
what is meant by "resubstitution"??.... (Matlab 2011a)
Could you please read the documentation and/or help? For example, doc ClassificationTree/resubPredict "label = resubPredic...

environ 14 ans il y a | 0

| A accepté

Charger plus