--- name: detect_outliers kind: function lang: go domain: datascience version: "1.0.0" purity: pure signature: "func DetectOutliers(data []float64, threshold float64) []bool" description: "Detecta outliers en un slice de float64 usando z-score. Devuelve true para valores cuyo |z-score| supera el umbral." tags: [datascience, statistics, outlier, anomaly] uses_functions: [] uses_types: [] returns: [] returns_optional: false error_type: "" imports: ["math"] tested: false tests: [] test_file_path: "" file_path: "functions/datascience/detect_outliers.go" ---