Can this simple two-step operation be done in one step?
Can it be done with memory arrays?Thanks!dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
ca = "sex";
dt << Select Where( Row() < 25 );
dt << Select Columns( ca );
d3 = dt << Subset( Output Table( "b3" ), Selected Rows( 1 ), columns( ca ) );
d2 = d3 << Summary(
Group( 1 ),
Freq( 0 ),
Weight( 0 ),
Link to original data table( 0 ),
Output Table( "b2" )
);
Is there no need to generate d3?