Rev | Line | |
---|
[80] | 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. |
---|
[137] | 10 | % |
---|
| 11 | % SEE ALSO <a href="http://37steps.com/prtools">PRTools Guide</a>, <a href="http://archive.ics.uci.edu/ml/">UCI Website</a> |
---|
| 12 | % PRTOOLS, DATASETS |
---|
[123] | 13 | |
---|
[137] | 14 | % Copyright: R.P.W. Duin, r.p.w.duin@37steps.com |
---|
[80] | 15 | |
---|
[137] | 16 | function a = car |
---|
[80] | 17 | |
---|
[137] | 18 | a = pr_loadmatfile; |
---|
| 19 | if 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/'; |
---|
[138] | 27 | opt.dsetname = 'Car dataset'; |
---|
[137] | 28 | a = pr_download('http://prtools.tudelft.nl/prdatasets/car.data',[],opt); |
---|
| 29 | end |
---|
| 30 | |
---|
[80] | 31 | return |
---|
Note: See
TracBrowser
for help on using the repository browser.