Unable to find file or directory 'fisheriris.net'

84 views (last 30 days)
I'm doing a project but I'm unable to load fisheriris.net. I can't find an installation link for the file anywhere either, and when looking through my toolbox there wasn't any file by the name 'stats' for me. Any way I can resolve this issue. I'm a beginner in MatLab and this has really stumped me. I'm using the R2002b version.

Answers (1)

Image Analyst
Image Analyst on 3 Dec 2022
fisheriris.net may be something that was created when someone was doing neural network manipulation of the built-in (with the Statistics and Machine Learning Toolbox) fisheriris.mat or fisheriris.csv file.
>> which('fisheriris.mat')
C:\Program Files\MATLAB\R2022b\toolbox\stats\statsdemos\fisheriris.mat
>> which('fisheriris.csv')
C:\Program Files\MATLAB\R2022b\toolbox\stats\statsdemos\fisheriris.csv
Do you have the stats toolbox? Type "ver" in the command window to check.
  5 Comments
Walter Roberson
Walter Roberson on 4 Dec 2022
Releases were not designated by year until 2006; there was no R2002b.
The link you give is for fisheriris.mat -- not fisheriris.net .
fisheriris.mat is present in R2022b if you have the Statistics and Machine Learning Toolbox installed; it is at
filename = fullfile(matlabroot, 'toolbox', 'stats', 'statsdemos', 'fisheriris.mat')
filename = '/MATLAB/toolbox/stats/statsdemos/fisheriris.mat'
ls(filename)
/MATLAB/toolbox/stats/statsdemos/fisheriris.mat
Stephen23
Stephen23 on 4 Dec 2022
Edited: Stephen23 on 4 Dec 2022
@Banuji: the page you link to only has FISHERIRIS.MAT (which is already included in the statistics toolbox), not FISHERIRIS.NET (which is what you asked about in your question, and what you incorrectly wrote in your comment).
For the record, please tell us where you found FISHERIRIS.NET.
"I don't have the stats folder under the toolbox file. Perhaps I'd need to install an older version of MatLab in order to have it."
In order to get the Statistics and Machine Learning toolbox you would need to install the Statistics and Machine Learning toolbox (and have a valid licence for it).

Sign in to comment.

Products


Release

R2022b

Community Treasure Hunt

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

Start Hunting!