source: prdatasets/car.m

Last change on this file was 150, checked in by bduin, 5 years ago
File size: 1.3 KB
Line 
1%CAR 1728 objects with 6 features in 4 classes
2%
3%  A = CAR
4%
5% The Car Evaluation Database was derived from a simple hierarchical
6% decision model originally developed for the demonstration of DEX (M.
7% Bohanec, V. Rajkovic: Expert system for decision making. Sistemica
8% 1(1), pp. 145-157, 1990.). All 6 features are nominal.
9% The instances completely cover the attribute space.
10%
11% SEE ALSO <a href="http://prtools.tudelft.nl/prtools/">PRTools Guide</a>, <a href="http://archive.ics.uci.edu/ml/">UCI Website</a>
12% PRTOOLS, DATASETS
13
14% Copyright: R.P.W. Duin
15
16function a = car
17
18a = pr_loadmatfile;
19if isempty(a)
20  opt.delimeter = ',';
21  opt.format = 'ccccccc';
22  opt.labfeat = 7;
23  opt.desc = 'Car Evaluation Database was derived from a simple hierarchical decision model originally developed for the demonstration of DEX (M. Bohanec, V. Rajkovic: Expert system for decision making. Sistemica 1(1), pp. 145-157, 1990.).';
24  opt.featnames = {'buying price' 'maintenance price' 'nr of doors' 'nr of persons' 'luggage boot' 'safety'};
25  opt.desc = 'The purpose of the analysis is to develop a screening procedure to detect carriers and to describe its effectiveness. ';
26  opt.link = 'http://lib.stat.cmu.edu/datasets/';
27  opt.dsetname = 'Car Evaluation';
28  a = pr_download('http://prtools.tudelft.nl/prdatasets/car.data',[],opt);
29end
30
31return
Note: See TracBrowser for help on using the repository browser.