public List <CorrlativeCircle> getCirclesOfAttr()
        {
            AnomalyDetector anomalyDetector = new AnomalyDetector(normalCsvPath, anomalyCsvPath, dllAlgorithmPath);

            anomalyDetector.CorrelationThreshold = CorrlationThreshold;
            return(anomalyDetector.getCorrletiveCircles());
        }
        public List <List <Tuple <int, int> > > getAnomalies()
        {
            AnomalyDetector anomalyDetector = new AnomalyDetector(normalCsvPath, anomalyCsvPath, dllAlgorithmPath);

            anomalyDetector.CorrelationThreshold = CorrlationThreshold;
            return(anomalyDetector.detectAnomalies());
        }