Changeset 94 for prdatasets/heart.m
- Timestamp:
- 09/14/14 21:19:24 (10 years ago)
- Location:
- prdatasets
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
prdatasets
- Property svn:ignore
-
old new 2 2 *.mat 3 3 *.data 4 *.asv
-
- Property svn:ignore
-
prdatasets/heart.m
r81 r94 1 1 %HEART 303 objects with 13 features in 2 classes 2 2 % 3 % X = HEART ;3 % X = HEART 4 4 % 5 5 % Heart-Cleveland dataset from the Hungarian Institute of Cardiology. 6 6 % Budapest: Andras Janosi, M.D. 7 7 % 8 % X = HEART(VAL) ;8 % X = HEART(VAL) 9 9 % 10 % Per default the missing values are replaced by -1. When you want to 11 % do something else, use one of the options in missingvalues.m. 10 % By default objects with missing values are removed. When something else 11 % is desired, use one of the options in MISVAL. 12 % 13 % SEE ALSO <a href="http://37steps.com/prtools">PRTools Guide</a>, <a href="http://archive.ics.uci.edu/ml/">UCI Website</a> 14 % PRTOOLS, DATASETS, MISVAL 15 16 % Copyright: R.P.W. Duin, r.p.w.duin@prtools.org 17 12 18 function x = heart(val) 13 19 … … 31 37 x = setname(x,'Heart Cleveland'); 32 38 x = setfeatdom(x,fd); 33 [x,msg] = prmissingvalues(x,val);39 [x,msg] = misval(x,val); 34 40 user.desc = [user.desc msg]; 35 41 x = setuser(x,user);
Note: See TracChangeset
for help on using the changeset viewer.