Skip to content
  • Numpy array:
    [7.  7.1 7.2]
    [[ 0  1  2]
     [ 3  4  5]
     [ 6  7  8]
     [ 9 10 11]
     [12 13 14]]
    
    Pandas Data Frame:
             7.0  7.1  7.2
    sample0    0    1    2
    sample1    3    4    5
    sample2    6    7    8
    sample3    9   10   11
    sample4   12   13   14
    
    
    Orange Table:
    [[0, 1, 2] {sample0},
     [3, 4, 5] {sample1},
     [6, 7, 8] {sample2},
     [9, 10, 11] {sample3},
     [12, 13, 14] {sample4}]
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment