--- name: standardize kind: function lang: go domain: datascience version: "1.0.0" purity: pure signature: "func Standardize(data []float64) []float64" description: "Aplica Z-score normalización a un slice de float64, transformando cada valor a (x - media) / desviación estándar." tags: [datascience, statistics, normalize, zscore, pendiente-usar] uses_functions: [] uses_types: [] returns: [] returns_optional: false error_type: "" imports: ["math"] params: - name: data desc: "slice de valores numéricos a normalizar" output: "slice estandarizado donde cada valor x → (x - media) / desviación_estándar, media=0 y desviación_estándar=1" tested: false tests: [] test_file_path: "" file_path: "functions/datascience/standardize.go" ---