Data Filter: exclude excluded rows
Is there an option (checkbox or setting) in Jmp to tell a data filter to exclude excluded rows from the lists? Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt << Data Filter(
Location( {265, 175} ),
Mode( Select( 0 ), Include( 1 ) ),
Add Filter(
columns( :age, :sex ),
Where( :age == {12, 14, 16} ),
Where( :sex == "F" ),
Display( :age, N Items( 6 ) )
)
);
dt
...