Changeset 925:f72799bbcde5 in orange-bioinformatics


Ignore:
Timestamp:
07/20/09 12:13:58 (4 years ago)
Author:
markotoplak
Branch:
default
Convert:
8056320a37ea0547e1d793276c1529ad749ab634
Message:

obiGsea: don't take only two class values, if they are not specified. take them all

File:
1 edited

Legend:

Unmodified
Added
Removed
  • obiGsea.py

    r878 r925  
    493493    classValues. Each element of the pair is a list of class 
    494494    values to be joined to first or second class. Group 
    495     classes in two new class values. If classValues is not  
    496     specified, take only first two classes. 
     495    classes in two new class values. 
     496    If class values are not specified, take all the classes. 
    497497 
    498498    Input data can be a single data set or a list of data sets 
     
    509509         
    510510        if not classValues: 
    511             classValues = [ oldcvals[0], oldcvals[1] ] 
     511            classValues = oldcvals 
    512512 
    513513        toJoin = [] 
     
    709709        WARNING. DUE TO BAD DESIGN YOU MAY CALL THIS FUNCTION ONLY ONCE. 
    710710        """ 
    711  
    712711        data = transposeIfNeeded(data) 
    713712 
Note: See TracChangeset for help on using the changeset viewer.