Interface Predicate<I>
-
- Type Parameters:
I- the type of the input values
- All Superinterfaces:
Function<java.util.List<I>,java.lang.Boolean>
- All Known Implementing Classes:
Selection.DropNaPredicate
public interface Predicate<I> extends Function<java.util.List<I>,java.lang.Boolean>
An interface used to filter a data frame.Implementors define
Function.apply(Object)to returntruefor rows that should be included in the filtered data frame.- See Also:
DataFrame#select(Predicate)