process_csv_streaming

Function process_csv_streaming 

Source
pub fn process_csv_streaming<P: AsRef<Path>, F, R>(
    path: P,
    config: StreamingCsvConfig,
    processor: F,
) -> Result<(Vec<R>, StreamingStats)>
where F: FnMut(&Array2<String>, Option<&Vec<String>>) -> Result<R> + Send + Sync, R: Send,
Expand description

Process a CSV file in streaming mode with a custom function