%CAR 1728 objects with 6 features in 4 classes % % A = CAR % % The 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.). All 6 features are nominal. % The instances completely cover the attribute space. function x = car prdatasets(mfilename,1,'http://prtools.tudelft.nl/prdatasets/car.data'); % for some mysterious reason it appeared to be necessary on my Windows 7 % system to repeat this command prdatasets(mfilename,1,'http://prtools.tudelft.nl/prdatasets/car.data'); user.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.).'; fl = {'buying price' 'maintenance price' 'nr of doors' 'nr of persons' 'luggage boot' 'safety'}; datfile = fullfile(fileparts(which(mfilename)),'car.data'); x = pr_readdataset(datfile,0,',',[],'ccccccc',7); x = setfeatlab(x,fl); x = setuser(x,user); x = setname(x,'Car'); return