Clear Filters
Clear Filters

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

32 views (last 30 days)
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 Comment
Rik
Rik on 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?

Sign in to comment.

Accepted Answer

KSSV
KSSV on 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 Comments
Rik
Rik on 19 Nov 2022
Nothing specific. It is simply one of the variables stored in this example data. It is probably short for measurement.

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!