Filter by row, stack columns?
I know how to make a subset table based on some criteria:dt << Row Selection( Select where( (:Stat == "mean"), Current Selection( Extend )) ); dt << Select Columns( [10, 20] ); dt2 << Subset( Output Table( "test"), Selected Rows( 1 ), Selected columns( 1 ) );But now I need to repeat the above for multiple criteria and stack the selection, i.e. the new table will have Column 10 as a fixed column, a...
atlas100