JSL Adding "And" condition to Data Filter
Hello JMP CommunityI was wondering if there is a way to add an "and" condition to a data filter in JSL.as an example I made a datasetIf we make a simple model over just the mean, model = Fit Model( Y( :Data ), Run);We can restrict the model to just one group with a data filter dtf = model << Local Data Filter(Columns(:Group), where(:Group == "A"));However now if I want to add another filter the on...