source: prdatasets/balance_scale.m @ 160

Last change on this file since 160 was 150, checked in by bduin, 5 years ago
File size: 978 bytes
RevLine 
[142]1%BALANCE_SCALE Balance scale weight & distance database
2%PRTools UCI dataset import, 625 objects, 4 mixed features, 5 classes
3%
4%  A = BALANCE_SCALE
5%
6%DESCRIPTION
7%This command downloads one of the UCI data sets, converts it into PRTools
8%format and stores it locally for future use. Consult the <a href="http://archive.ics.uci.edu/ml/datasets/Balance+Scale">related website</a>
9%for further information. Please make the appropriate references in
10%publications that make use of this dataset.
11%
12%This dataset contains one categorical features with 3 categories.
13%It may be converted to 3 new real features by CAT2REAL.
14%
[150]15%SEE ALSO <a href="http://prtools.tudelft.nl/prtools/">PRTools Guide</a>, <a href="http://archive.ics.uci.edu/ml/">UCI Website</a>
[142]16%PRTOOLS, DATASETS, SETFEATDOM, FEATTYPES, CAT2REAL
17
[150]18% Copyright: R.P.W. Duin
[142]19
20function a = balance_scale
21
22a = pr_download_uci('Balance+Scale','balance-scale.data');
23a = setname(a,'Balance Scale');
24
25
Note: See TracBrowser for help on using the repository browser.