Reactive Functions in Meerkat¶

Meerkat provides some reactive functions out of the box.

General¶

meerkat.abs

Return the absolute value of the argument.

meerkat.all

Return True if bool(x) is True for all values x in the iterable.

meerkat.any

Return True if bool(x) is True for any x in the iterable.

meerkat.bool

Overloaded bool operator.

meerkat.complex

meerkat.dict

meerkat.float

meerkat.hex

Return the hexadecimal representation of an integer.

meerkat.int

meerkat.len

Return the number of items in a container.

meerkat.list

meerkat.oct

Return the octal representation of an integer.

meerkat.range

meerkat.set

meerkat.str

meerkat.sum

Return the sum of a 'start' value (default: 0) plus an iterable of numbers

meerkat.tuple

Boolean Operations¶

meerkat.cand

Overloaded and operator.

meerkat.cnot

Overloaded not operator.

meerkat.cor

Overloaded or operator.

DataFrame Operations¶

meerkat.aggregate

meerkat.clusterby

Perform a clusterby operation on a DataFrame.

meerkat.concat

Concatenate a sequence of columns or a sequence of `DataFrame`s.

meerkat.explainby

Perform a clusterby operation on a DataFrame.

meerkat.groupby

Perform a groupby operation on a DataFrame or Column (similar to a DataFrame.groupby and Series.groupby operations in Pandas).j.

meerkat.merge

Perform a database-style join operation between two DataFrames.

meerkat.sample

Select a random sample of rows from DataFrame or Column.

meerkat.shuffle

Shuffle the rows of a DataFrame or Column.

meerkat.sort

Sort a DataFrame or Column.