Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

how to disply all the columns from dataset

1 Ansicht (letzte 30 Tage)
priyanka gaikwad
priyanka gaikwad am 14 Mär. 2017
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
I have a total 25 columns in tha dataset and 2000 rows. When I am applying crossvalidation on it it display the only one column. I am running this code it display single column data
data= load('WUILWindows.txt');
CVO = cvpartition(2616,'k',5);
for i = 1:CVO.NumTestSets
trIdx = CVO.training(i);
teIdx = CVO.test(i);
end
traindata = data( trIdx);
testdata = data ( teIdx);

Antworten (0)

Diese Frage ist geschlossen.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by