load_file

Function load_file 

Source
pub fn load_file(path: &Path) -> Result<DataFrame>
Expand description

Convenience function to load a file with default options.

ยงExamples

use dataload::load_file;
use std::path::Path;

let df = load_file(Path::new("data.csv"))?;