source: prdatasets/ionosphere.m

Last change on this file was 150, checked in by bduin, 5 years ago
File size: 588 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
14% Faculty EWI, Delft University of Technology
15% P.O. Box 5031, 2600 GA Delft, The Netherlands
16
17function a = ionosphere
18
19a = pr_getdata;
20a = setname(a,'Ionosphere Dataset');
21a = setlablist(a,{'good','bad'});
22
Note: See TracBrowser for help on using the repository browser.