AnomalyDetectorFunction
AnomalyDetectorFunction[...] represents a function generated by AnomalyDetection for detecting whether data is anomalous or not.
Examples
Create and use an anomaly detector function:
detector = AnomalyDetection[RandomReal[1, 100]];
detector[0.5]
(* False *)
detector[10]
(* True *)Please visit the official Wolfram Language Reference for more details.