Last change
on this file since 80 was
80,
checked in by dtax, 11 years ago
|
Creator files for prtools datasets.
|
File size:
756 bytes
|
Line | |
---|
1 | %IONOSPHERE 351 objects, 34 features, 2 classes |
---|
2 | % Johns Hopkins University ionosphere dataset |
---|
3 | % |
---|
4 | % A = IONOSPHERE |
---|
5 | % A = IONOSPHERE(M,N) |
---|
6 | % |
---|
7 | % Load the dataset in A. This is the Johns Hopkins University ionosphere |
---|
8 | % dataset from the UCI Machine Learning Repository, |
---|
9 | % //www.ics.uci.edu/~mlearn/MLRepository.html |
---|
10 | % |
---|
11 | % See also DATASETS, PRDATASETS |
---|
12 | |
---|
13 | % Copyright: R.P.W. Duin, r.p.w.duin@prtools.org |
---|
14 | % Faculty EWI, Delft University of Technology |
---|
15 | % P.O. Box 5031, 2600 GA Delft, The Netherlands |
---|
16 | |
---|
17 | function a = ionosphere |
---|
18 | |
---|
19 | prdatasets(mfilename,1); |
---|
20 | % the stats toolbox has a ionosphere.mat file too, avoid it |
---|
21 | pp = fileparts(which(mfilename)); |
---|
22 | a = prdataset(fullfile(pp,'ionosphere')); |
---|
23 | a = setname(a,'Ionosphere Dataset'); |
---|
24 | a = setlablist(a,{'good','bad'}); |
---|
25 | |
---|
Note: See
TracBrowser
for help on using the repository browser.