nu_plugin_polars 0.114.0

Nushell dataframe plugin commands based on polars.
Documentation
1
2
3
4
5
6
7
8
mod math;

use crate::PolarsPlugin;
use nu_plugin::PluginCommand;

pub(crate) fn computation_commands() -> Vec<Box<dyn PluginCommand<Plugin = PolarsPlugin>>> {
    math::commands()
}