Filter löschen
Filter löschen

how to load fisheriris data set by reducing the number of sample for each species

32 Ansichten (letzte 30 Tage)
I am using fisheriris data set in my matlab code.
As fisheriris contain 3 species of 50 samples each.In total it contains 150 samples with 4 features.
Could anyone help me how to load 3 samples from 3 species inorder to make in total 9 samples containing 4 features.
  1 Kommentar
Rik
Rik am 30 Jan. 2019
I don't have the required toolbox, so this file is not available for me:
fullfile(matlabroot, 'toolbox', 'stats', 'statsdemos', 'fisheriris.mat')
But this looks like you should be able to load this file, and use the species variable to separate the different species.
Do you want to have a random selection of 3 of each species?

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

KSSV
KSSV am 30 Jan. 2019
load fisheriris.mat ;
str = unique(species) ;
% pick any three randomly
pos = zeros(3,3) ;
for i = 1:3
idx = find(contains(species,str{i})) ;
pos(:,i) = randsample(idx,3) ;
end
iwant = meas(pos(:),:)
  8 Kommentare
Rik
Rik am 19 Nov. 2022
Nothing specific. It is simply one of the variables stored in this example data. It is probably short for measurement.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by