--- name: load_parquet kind: function lang: go domain: datascience version: "1.0.0" purity: impure signature: "func LoadParquet(path string) ([]map[string]any, error)" description: "Carga un archivo Parquet desde disco y lo retorna como slice de mapas columna-valor." tags: [datascience, io, parquet, load] uses_functions: [] uses_types: [] returns: [] returns_optional: false error_type: "error_go_core" imports: ["fmt"] params: - name: path desc: "ruta al archivo Parquet (ej: '/data/events.parquet')" output: "slice de mapas donde cada mapa es una fila (columna -> valor), ej: [{'user_id': 123, 'timestamp': '2026-01-01T10:00:00'}]" tested: false tests: [] test_file_path: "" file_path: "functions/datascience/load_parquet.go" ---