source: prdatasets/letter.m @ 156

Last change on this file since 156 was 150, checked in by bduin, 5 years ago
File size: 780 bytes
RevLine 
[142]1%LETTER Predict the age of abalone from physical measurements
2%PRTools dataset import from UCI, 4177 objects, 8 features, 28 classes
3%
4%  A = LETTER
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/Letter+Recognition">related website</a>
9%for further information. Please make the appropriate references in
10%publications that make use of this dataset.
11%
[150]12%SEE ALSO <a href="http://prtools.tudelft.nl/prtools/">PRTools Guide</a>, <a href="http://archive.ics.uci.edu/ml/">UCI Website</a>
[142]13
14function a = letter
15
16a = pr_download_uci('Letter+Recognition','letter-recognition.data');
17a = setname(a,'Letter Recognition');
18
19
Note: See TracBrowser for help on using the repository browser.