Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
datafusion::dataframe::DataFrame - Rust
[go: Go Back, main page]

Trait datafusion::dataframe::DataFrame[][src]

pub trait DataFrame {
    fn select(&self, expr: Vec<Expr>) -> Result<Rc<DataFrame>>;
fn filter(&self, expr: Expr) -> Result<Rc<DataFrame>>;
fn col(&self, column_name: &str) -> Result<Expr>;
fn schema(&self) -> &Rc<Schema>;
fn plan(&self) -> &Rc<LogicalPlan>;
fn show(&self, count: usize); }

DataFrame is an abstraction of a logical plan and a schema

Required Methods

Projection

Selection

Return an expression representing the specified column

show N rows (useful for debugging)

Implementors