← Back

Module ops

fn join(left: &DataFrame, right: &DataFrame, on: &str, how: JoinType) -> DataFrame

Source: ops.joule:13

fn describe(df: &DataFrame) -> DataFrame

Source: ops.joule:252

fn quantile(sorted: &[f64], q: f64) -> f64

Source: ops.joule:302

fn agg_column(col: &Column, func: AggFunc) -> f64

Source: ops.joule:320

enum AggFunc

Source: ops.joule:390

fn pivot(df: &DataFrame, index: &str, columns: &str, values: &str, aggfunc: AggFunc) -> DataFrame

Source: ops.joule:408

fn melt(df: &DataFrame, id_vars: &[&str], value_vars: &[&str], var_name: &str, value_name: &str) -> DataFrame

Source: ops.joule:475

fn test_describe()

Source: ops.joule:548

fn test_inner_join()

Source: ops.joule:559

fn test_agg_functions()

Source: ops.joule:575