Rev | Line | |
---|
[80] | 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)); |
---|
[81] | 22 | a = pr_dataset(fullfile(pp,'ionosphere')); |
---|
[80] | 23 | a = setname(a,'Ionosphere Dataset'); |
---|
| 24 | a = setlablist(a,{'good','bad'}); |
---|
| 25 | |
---|
Note: See
TracBrowser
for help on using the repository browser.