Changeset 96
- Timestamp:
- 09/22/14 15:44:27 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
prdatasets/arrhythmia.m
r94 r96 10 10 % X = ARRHYTHMIA(VAL); 11 11 % 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. 16 14 % 17 15 % SEE ALSO <a href="http://37steps.com/prtools">PRTools Guide</a>, <a href="http://archive.ics.uci.edu/ml/">UCI Website</a> … … 24 22 prdatasets(mfilename,1,'http://prtools.org/prdatasets/arrhythmia.dat'); 25 23 if nargin<1 26 val = ' remove';24 val = 'f-remove'; 27 25 end 28 26 … … 54 52 x = setfeatlab(x,fl); 55 53 x = setname(x,'Arrhythmia normal'); 54 x = setuser(x,user); 56 55 %x(:,14) = []; % there are so many missing values, that I just remove this 57 56 % % don't do this, nice but confusing 58 [x,msg]= misval(x,val);59 user.desc = [user.desc msg];60 x = setuser(x,user);57 x = misval(x,val); 58 % user.desc = [user.desc msg]; 59 % x = setuser(x,user); 61 60 x = setlablist(x); 62 61 return
Note: See TracChangeset
for help on using the changeset viewer.