Skip to content

print LazyFrame internal method

Source code

Description

can be used i the middle of a method chain

Usage

<LazyFrame>$print(x)

Arguments

x LazyFrame

Value

self

Examples

library(polars)

pl$LazyFrame(iris)$print()
#> DF ["Sepal.Length", "Sepal.Width", "Petal.Length", "Petal.Width"]; PROJECT */5 COLUMNS; SELECTION: "None"

#> polars LazyFrame
#>  $describe_optimized_plan() : Show the optimized query plan.
#> 
#> Naive plan:
#> DF ["Sepal.Length", "Sepal.Width", "Petal.Length", "Petal.Width"]; PROJECT */5 COLUMNS; SELECTION: "None"