View Source Explorer.Backend.LazyFrame (Explorer v0.9.0)

Represents a lazy dataframe for building query expressions.

The LazyFrame is available inside filter_with, mutate_with, and similar. You cannot perform any operation on them except accessing its underlying series.

Summary

Types

@type t() :: %Explorer.Backend.LazyFrame{
  backend: module(),
  dtypes: Explorer.Backend.DataFrame.dtypes(),
  names: Explorer.Backend.DataFrame.column_name(),
  resource: reference() | nil
}