source: prdatasets/satellite.m @ 93

Last change on this file since 93 was 81, checked in by bduin, 11 years ago
File size: 713 bytes
Line 
1%SATELLITE Satellite dataset 6435 objects with 36 features in 6 classes
2%
3%       A = SATELLITE
4%
5% Load the dataset in A. This is the Satellite dataset from the UCI
6% Machine Learning Repository, //www.ics.uci.edu/~mlearn/MLRepository.html.
7% As the samples are taken from related neighborhoods, it is better to
8% avoid cross-validation. Use the first 4435 samples for training and the
9% remaining 2000 for testing.
10%
11% See also DATASETS, PRDATASETS, SOYBEAN1
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 = satellite
18
19prdatasets(mfilename,1);
20a = pr_dataset('satellite');
21a = setname(a,'Satellite dataset');
Note: See TracBrowser for help on using the repository browser.