Changeset 96


Ignore:
Timestamp:
09/22/14 15:44:27 (10 years ago)
Author:
bduin
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • prdatasets/arrhythmia.m

    r94 r96  
    1010%       X = ARRHYTHMIA(VAL);
    1111%
    12 % By default objects with missing values are removed. When something else
    13 % is desired, use one of the options in MISVAL. As some features have
    14 % many missing values we recommand to remove these features using
    15 % VAL = 'f-remove'.
     12% By default features with missing values are removed. When something else
     13% is desired, use one of the options in MISVAL.
    1614%
    1715% SEE ALSO <a href="http://37steps.com/prtools">PRTools Guide</a>, <a href="http://archive.ics.uci.edu/ml/">UCI Website</a>
     
    2422prdatasets(mfilename,1,'http://prtools.org/prdatasets/arrhythmia.dat');
    2523if nargin<1
    26         val = 'remove';
     24        val = 'f-remove';
    2725end
    2826
     
    5452x = setfeatlab(x,fl);
    5553x = setname(x,'Arrhythmia normal');
     54x = setuser(x,user);
    5655%x(:,14) = [];  % there are so many missing values, that I just remove this
    5756%               % don't do this, nice but confusing
    58 [x,msg] = misval(x,val);
    59 user.desc = [user.desc msg];
    60 x = setuser(x,user);
     57x = misval(x,val);
     58% user.desc = [user.desc msg];
     59% x = setuser(x,user);
    6160x = setlablist(x);
    6261return
Note: See TracChangeset for help on using the changeset viewer.