Compare commits
No commits in common. "cbf318690c5e7bfe0305344cbc279c11d51d2ccc" and "951bd82a2b398c35a1f57b8b2cdb981e21b31c38" have entirely different histories.
cbf318690c
...
951bd82a2b
|
@ -8,7 +8,6 @@ use std::path::PathBuf;
|
||||||
pub fn read_csv(path: String, delimiter: u8) -> LazyFrame {
|
pub fn read_csv(path: String, delimiter: u8) -> LazyFrame {
|
||||||
LazyCsvReader::new(path)
|
LazyCsvReader::new(path)
|
||||||
.with_delimiter(delimiter)
|
.with_delimiter(delimiter)
|
||||||
.with_infer_schema_length(None)
|
|
||||||
.finish()
|
.finish()
|
||||||
.expect("Could not load file")
|
.expect("Could not load file")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue