source: prdatasets/ionosphere.m @ 80

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
RevLine 
[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
17function a = ionosphere
18
19prdatasets(mfilename,1);
20% the stats toolbox has a ionosphere.mat file too, avoid it
21pp = fileparts(which(mfilename));
22a = prdataset(fullfile(pp,'ionosphere'));
23a = setname(a,'Ionosphere Dataset');
24a = setlablist(a,{'good','bad'});
25
Note: See TracBrowser for help on using the repository browser.