Dave@Pega-Analytics wrote:
I get the sense that you are trying to use the data filter to automate the exclusion of data points in preparation for making a graph without using it interactively.
That is correct. The ideal is for another JMP user to reach the end analysis from any table form (exclusions, selections), run graphs, then clear back to the table default. I'm having trouble getting this script to recognize multiple conditions, at least by writing it in as I would in the filter function like so.
Data Filter( Add Filter(
columns( :Condition 1, :Condition 2),
Where( :Condition 1 == {"A", "B"} ),
Where( :Condition 2 == {"C", "D"}) ),
Mode( Select( 0 ), Show( 1 ), Include( 1 ) ) );
How would this filter be translated into script? And how do you clear selection?