Changeset 94 for prdatasets/biomed.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/biomed.m
r81 r94 7 7 % only a few carriers of the disease from whom data are available. 8 8 % 9 % X = BIOMED(VAL) ;9 % X = BIOMED(VAL) 10 10 % 11 % Per default the entries with missing values are removed. When you want 12 % to do something else, use one of the options in missingvalues.m. 13 % This is the ''biomed' dataset of the StatLib Datasets Archive, see 14 % http://lib.stat.cmu.edu/datasets/ 11 % By default objects with missing values are removed. When something else 12 % is desired, use one of the options in MISVAL. 15 13 % 16 % SEE ALSO 17 % DATASETS, MISSINGVALUES 14 % This is the ''biomed' dataset of the <a href="http://lib.stat.cmu.edu/datasets/">StatLib Datasets Archive</a>. 15 % 16 % SEE ALSO <a href="http://37steps.com/prtools">PRTools Guide</a>, <a href="http://archive.ics.uci.edu/ml/">UCI Website</a> 17 % PRTOOLS, DATASETS, MISVAL 18 19 % Copyright: R.P.W. Duin, r.p.w.duin@prtools.org 18 20 19 21 function x = biomed(val) … … 33 35 x = setfeatlab(x,fl); 34 36 x = setname(x,'Biomed'); 35 [x,msg] = prmissingvalues(x,val);37 [x,msg] = misval(x,val); 36 38 user.desc = [user.desc msg]; 37 39 x = setuser(x,user);
Note: See TracChangeset
for help on using the changeset viewer.