Struct polars::prelude::LazyCsvReader

source ·
pub struct LazyCsvReader { /* private fields */ }
Available on crate features lazy and csv only.

Implementations§

source§

impl LazyCsvReader

source

pub fn new_paths(paths: Arc<[PathBuf]>) -> LazyCsvReader

source

pub fn new(path: impl AsRef<Path>) -> LazyCsvReader

source

pub fn with_skip_rows_after_header(self, offset: usize) -> LazyCsvReader

Skip this number of rows after the header location.

source

pub fn with_row_index(self, row_index: Option<RowIndex>) -> LazyCsvReader

Add a row index column.

source

pub fn with_n_rows(self, num_rows: Option<usize>) -> LazyCsvReader

Try to stop parsing when n rows are parsed. During multithreaded parsing the upper bound n cannot be guaranteed.

source

pub fn with_infer_schema_length(self, num_rows: Option<usize>) -> LazyCsvReader

Set the number of rows to use when inferring the csv schema. the default is 100 rows. Setting to None will do a full table scan, very slow.

source

pub fn with_ignore_errors(self, ignore: bool) -> LazyCsvReader

Continue with next batch when a ParserError is encountered.

source

pub fn with_schema(self, schema: Option<Arc<Schema>>) -> LazyCsvReader

Set the CSV file’s schema

source

pub fn with_skip_rows(self, skip_rows: usize) -> LazyCsvReader

Skip the first n rows during parsing. The header will be parsed at row n.

source

pub fn with_dtype_overwrite(self, schema: Option<Arc<Schema>>) -> LazyCsvReader

Overwrite the schema with the dtypes in this given Schema. The given schema may be a subset of the total schema.

source

pub fn has_header(self, has_header: bool) -> LazyCsvReader

Set whether the CSV file has headers

source

pub fn with_separator(self, separator: u8) -> LazyCsvReader

Set the CSV file’s column separator as a byte character

source

pub fn with_comment_prefix(self, comment_prefix: Option<&str>) -> LazyCsvReader

Set the comment prefix for this instance. Lines starting with this prefix will be ignored.

source

pub fn with_quote_char(self, quote: Option<u8>) -> LazyCsvReader

Set the char used as quote char. The default is b'"'. If set to [None] quoting is disabled.

source

pub fn with_end_of_line_char(self, eol_char: u8) -> LazyCsvReader

Set the char used as end of line. The default is b'\n'.

source

pub fn with_null_values(self, null_values: Option<NullValues>) -> LazyCsvReader

Set values that will be interpreted as missing/ null.

source

pub fn with_missing_is_null(self, missing_is_null: bool) -> LazyCsvReader

Treat missing fields as null.

source

pub fn with_cache(self, cache: bool) -> LazyCsvReader

Cache the DataFrame after reading.

source

pub fn low_memory(self, toggle: bool) -> LazyCsvReader

Reduce memory usage at the expense of performance

source

pub fn with_encoding(self, enc: CsvEncoding) -> LazyCsvReader

source

pub fn with_try_parse_dates(self, toggle: bool) -> LazyCsvReader

Available on crate feature temporal only.

Automatically try to parse dates/datetimes and time. If parsing fails, columns remain of dtype [DataType::String].

source

pub fn raise_if_empty(self, toggle: bool) -> LazyCsvReader

Raise an error if CSV is empty (otherwise return an empty frame)

source

pub fn truncate_ragged_lines(self, toggle: bool) -> LazyCsvReader

Truncate lines that are longer than the schema.

source

pub fn with_decimal_comma(self, toggle: bool) -> LazyCsvReader

source

pub fn with_schema_modify<F>(self, f: F) -> Result<LazyCsvReader, PolarsError>

Modify a schema before we run the lazy scanning.

Important! Run this function latest in the builder!

Trait Implementations§

source§

impl Clone for LazyCsvReader

source§

fn clone(&self) -> LazyCsvReader

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl LazyFileListReader for LazyCsvReader

source§

fn with_rechunk(self, toggle: bool) -> LazyCsvReader

Rechunk the memory to contiguous chunks when parsing is done.

source§

fn n_rows(&self) -> Option<usize>

Try to stop parsing when n rows are parsed. During multithreaded parsing the upper bound n cannot be guaranteed.

source§

fn row_index(&self) -> Option<&RowIndex>

Return the row index settings.

source§

fn finish_no_glob(self) -> Result<LazyFrame, PolarsError>

Get the final LazyFrame. This method assumes, that path is not a glob. Read more
source§

fn path(&self) -> &Path

Path of the scanned file. It can be potentially a glob pattern.
source§

fn paths(&self) -> &[PathBuf]

source§

fn with_path(self, path: PathBuf) -> LazyCsvReader

Set path of the scanned file. Support glob patterns.
source§

fn with_paths(self, paths: Arc<[PathBuf]>) -> LazyCsvReader

Set paths of the scanned files. Doesn’t glob patterns.
source§

fn with_n_rows(self, n_rows: impl Into<Option<usize>>) -> LazyCsvReader

Configure the row limit.
source§

fn with_row_index(self, row_index: impl Into<Option<RowIndex>>) -> LazyCsvReader

Configure the row index.
source§

fn rechunk(&self) -> bool

Rechunk the memory to contiguous chunks when parsing is done.
source§

fn concat_impl(&self, lfs: Vec<LazyFrame>) -> Result<LazyFrame, PolarsError>

Recommended concatenation of LazyFrames from many input files. Read more
source§

fn finish(self) -> Result<LazyFrame, PolarsError>

Get the final LazyFrame.
source§

fn cloud_options(&self) -> Option<&CloudOptions>

CloudOptions used to list files.
source§

fn iter_paths( &self ) -> Result<Option<Box<dyn Iterator<Item = Result<PathBuf, PolarsError>>>>, PolarsError>

Get list of files referenced by this reader. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for T
where T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V