photo

Kunal Roy


Attivo dal 2016

Followers: 0   Following: 0

Statistica

MATLAB Answers

14 Domande
0 Risposte

RANK
38.617
of 300.847

REPUTAZIONE
1

CONTRIBUTI
14 Domande
0 Risposte

ACCETTAZIONE DELLE RISPOSTE
35.71%

VOTI RICEVUTI
1

RANK
 of 21.094

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK

of 171.279

CONTRIBUTI
0 Problemi
0 Soluzioni

PUNTEGGIO
0

NUMERO DI BADGE
0

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • Thankful Level 3

Visualizza badge

Feeds

Visto da

Domanda


I execute the following program and none of the variables in the decision tree function and below show up in the workspace? Am I doing something wrong with how I'm defining and using the functions?
load iris.dat %discretizeData discretizedData = zeros(150,5); for i = 1:size(iris,2) currentColumn = i...

oltre 9 anni fa | 0 risposte | 0

0

risposte

Domanda


Can someone explain the error? Function with duplicate name dtree cannot be defined
load iris.dat %discretizeData discretizedData = zeros(150,5); for i = 1:size(iris,2) currentColumn = i...

oltre 9 anni fa | 1 risposta | 0

1

risposta

1

risposta

Domanda


I am new to programming. I need to build a decision tree to classify setosa (class =1 ) against combined virginca and versicolor (class = 2) in matlab
I have tried for days to come up with code. I just can't wrap my head around how I should build a tree and trace back to various...

oltre 9 anni fa | 1 risposta | 0

1

risposta

Domanda


I want to create a function best_attribute = findbestattribute(x1,x2,x3,x4) and I want x1, x2, x3 and x4 to be whole columns. How can I do this?
%This is what I have in mind load iris.dat function best_attribute(iris(:,1),iris(:,2),iris(:,3),iris(:,4)) %note t...

oltre 9 anni fa | 1 risposta | 0

1

risposta

Domanda


How to discretize?
Suppose I had 51,42,43,56,76,54,34,56,78,80 in a column how would I use discretize function to put the numbers between 50-59 in...

oltre 9 anni fa | 1 risposta | 1

1

risposta

Domanda


tree = fitctree(meas,species(50,:)) not working
I want to classify only setosa. Also, how do I determine the best categorical predictor for the split using the best_split_Att...

oltre 9 anni fa | 1 risposta | 0

1

risposta

Domanda


how do I get the names of the attributes?
load iris.dat iris(1,1) gives me the first value of the first column how do I access the name of the attribute?

oltre 9 anni fa | 1 risposta | 0

1

risposta

Domanda


How can I create an dynamically increasing array to store positions?
load iris.dat for i:size(iris,2)-1 if (iris(:,i)==iris(1,1) %store the row number in a dynamically increas...

oltre 9 anni fa | 0 risposte | 0

0

risposte

Domanda


I want to construct three tests.
If I have four columns, x1, x2, x3 and x4 I want to create the following three tests for the first values of all the four colum...

oltre 9 anni fa | 1 risposta | 0

1

risposta

Domanda


What is the best matlab data structure to represent a decision tree?
I want to be able to access the level of the tree and the number of nodes and the information of the nodes after a split. What i...

oltre 9 anni fa | 2 risposte | 0

2

risposte

Domanda


How to find count of an item in a column of data in matlab?
I need to find probabilities of each class for the implementation of a decision tree, in other words, the calculation of entropy...

oltre 9 anni fa | 2 risposte | 0

2

risposte

Domanda


How can I do a 50-50 split on data to obtain train and test datasets such that no value is common to both sets?
I am new to matlab and I can't find a function to do this.

oltre 9 anni fa | 1 risposta | 0

1

risposta