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 |
---|
14 | % Faculty EWI, Delft University of Technology |
---|
15 | % P.O. Box 5031, 2600 GA Delft, The Netherlands |
---|
16 | |
---|
17 | function a = ionosphere |
---|
18 | |
---|
19 | a = pr_getdata; |
---|
20 | a = setname(a,'Ionosphere Dataset'); |
---|
21 | a = setlablist(a,{'good','bad'}); |
---|
22 | |
---|
Note: See
TracBrowser
for help on using the repository browser.