Changeset 94 for prdatasets/biomed.m


Ignore:
Timestamp:
09/14/14 21:19:24 (10 years ago)
Author:
bduin
Message:
 
Location:
prdatasets
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • prdatasets

    • Property svn:ignore
      •  

        old new  
        22*.mat
        33*.data
         4*.asv
  • prdatasets/biomed.m

    r81 r94  
    77% only a few carriers of the disease from whom data are available.
    88%
    9 %       X = BIOMED(VAL);
     9%       X = BIOMED(VAL)
    1010%
    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.
    1513%
    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
    1820
    1921function x = biomed(val)
     
    3335x = setfeatlab(x,fl);
    3436x = setname(x,'Biomed');
    35 [x,msg] = prmissingvalues(x,val);
     37[x,msg] = misval(x,val);
    3638user.desc = [user.desc msg];
    3739x = setuser(x,user);
Note: See TracChangeset for help on using the changeset viewer.