Changeset 94 for prdatasets/heart.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/heart.m

    r81 r94  
    11%HEART 303 objects with 13 features in 2 classes
    22%
    3 %       X = HEART;
     3%       X = HEART
    44%
    55% Heart-Cleveland dataset from the Hungarian Institute of Cardiology.
    66% Budapest: Andras Janosi, M.D.
    77%
    8 %       X = HEART(VAL);
     8%       X = HEART(VAL)
    99%
    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
    1218function x = heart(val)
    1319
     
    3137x = setname(x,'Heart Cleveland');
    3238x = setfeatdom(x,fd);
    33 [x,msg] = prmissingvalues(x,val);
     39[x,msg] = misval(x,val);
    3440user.desc = [user.desc msg];
    3541x = setuser(x,user);
Note: See TracChangeset for help on using the changeset viewer.