pub struct DslBuilder(pub DslPlan);
Tuple Fields§
§0: DslPlan
Implementations§
Source§impl DslBuilder
impl DslBuilder
pub fn anonymous_scan( function: Arc<dyn AnonymousScan>, schema: Option<SchemaRef>, infer_schema_length: Option<usize>, skip_rows: Option<usize>, n_rows: Option<usize>, name: &'static str, ) -> PolarsResult<Self>
pub fn scan_parquet( sources: ScanSources, n_rows: Option<usize>, cache: bool, parallel: ParallelStrategy, row_index: Option<RowIndex>, rechunk: bool, low_memory: bool, cloud_options: Option<CloudOptions>, use_statistics: bool, schema: Option<SchemaRef>, hive_options: HiveOptions, glob: bool, include_file_paths: Option<PlSmallStr>, allow_missing_columns: bool, ) -> PolarsResult<Self>
Available on crate feature
parquet
only.pub fn scan_ipc( sources: ScanSources, options: IpcScanOptions, n_rows: Option<usize>, cache: bool, row_index: Option<RowIndex>, rechunk: bool, cloud_options: Option<CloudOptions>, hive_options: HiveOptions, include_file_paths: Option<PlSmallStr>, ) -> PolarsResult<Self>
Available on crate feature
ipc
only.pub fn cache(self) -> Self
pub fn drop(self, to_drop: Vec<Selector>, strict: bool) -> Self
pub fn project(self, exprs: Vec<Expr>, options: ProjectionOptions) -> Self
pub fn fill_null(self, fill_value: Expr) -> Self
pub fn drop_nulls(self, subset: Option<Vec<Expr>>) -> Self
pub fn fill_nan(self, fill_value: Expr) -> Self
pub fn with_columns(self, exprs: Vec<Expr>, options: ProjectionOptions) -> Self
pub fn with_context(self, contexts: Vec<DslPlan>) -> Self
pub fn group_by<E: AsRef<[Expr]>>( self, keys: Vec<Expr>, aggs: E, apply: Option<(Arc<dyn DataFrameUdf>, SchemaRef)>, maintain_order: bool, ) -> Self
pub fn build(self) -> DslPlan
pub fn from_existing_df(df: DataFrame) -> Self
pub fn sort( self, by_column: Vec<Expr>, sort_options: SortMultipleOptions, ) -> Self
pub fn explode(self, columns: Vec<Selector>, allow_empty: bool) -> Self
pub fn unpivot(self, args: UnpivotArgsDSL) -> Self
Available on crate feature
pivot
only.pub fn row_index(self, name: PlSmallStr, offset: Option<IdxSize>) -> Self
pub fn distinct(self, options: DistinctOptionsDSL) -> Self
pub fn slice(self, offset: i64, len: IdxSize) -> Self
pub fn join( self, other: DslPlan, left_on: Vec<Expr>, right_on: Vec<Expr>, options: Arc<JoinOptions>, ) -> Self
pub fn map_private(self, function: DslFunction) -> Self
pub fn map_python( self, function: PythonFunction, optimizations: AllowedOptimizations, schema: Option<SchemaRef>, validate_output: bool, ) -> Self
Available on crate feature
python
only.pub fn map<F>(
self,
function: F,
optimizations: AllowedOptimizations,
schema: Option<Arc<dyn UdfSchema>>,
name: PlSmallStr,
) -> Selfwhere
F: DataFrameUdf + 'static,
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for DslBuilder
impl !RefUnwindSafe for DslBuilder
impl Send for DslBuilder
impl Sync for DslBuilder
impl Unpin for DslBuilder
impl !UnwindSafe for DslBuilder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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