* Dataframe MVP * Removed test csv file * Dataframe MVP * Removed test csv file * New revision polars * New revision polars * csv file reader * argument parser for file reader * Parser from Row primitive * Column conversion * Added as f32 and f64 * Parsing row to dataframe * Removed repeated push to vector * Accept table values to create dataframe * Removed default serde * Dataframe to rows to show data * Save name of file with dataframe * Usage example * Upgrade polars version * Clippy changes * Added print function with head and tail * Move dataframe struct to folder * Lock file after running tests and merge * Optional feature for dataframe * Removed dataframe from plugins * Update primitive.rs Co-authored-by: JT <jonathandturner@users.noreply.github.com>
34 lines
1.2 KiB
Rust
34 lines
1.2 KiB
Rust
#[macro_use]
|
|
mod macros;
|
|
|
|
mod call_info;
|
|
pub mod config_path;
|
|
pub mod hir;
|
|
mod maybe_owned;
|
|
mod return_value;
|
|
mod signature;
|
|
mod syntax_shape;
|
|
mod type_name;
|
|
mod type_shape;
|
|
pub mod value;
|
|
|
|
#[cfg(feature = "dataframe")]
|
|
pub mod dataframe;
|
|
|
|
pub use crate::call_info::{CallInfo, EvaluatedArgs};
|
|
pub use crate::config_path::ConfigPath;
|
|
pub use crate::maybe_owned::MaybeOwned;
|
|
pub use crate::return_value::{CommandAction, ReturnSuccess, ReturnValue};
|
|
pub use crate::signature::{NamedType, PositionalType, Signature};
|
|
pub use crate::syntax_shape::SyntaxShape;
|
|
pub use crate::type_name::{PrettyType, ShellTypeName, SpannedTypeName};
|
|
pub use crate::type_shape::{Row as RowType, Type};
|
|
pub use crate::value::column_path::{ColumnPath, PathMember, UnspannedPathMember};
|
|
pub use crate::value::dict::{Dictionary, TaggedDictBuilder};
|
|
pub use crate::value::did_you_mean::did_you_mean;
|
|
pub use crate::value::primitive::Primitive;
|
|
pub use crate::value::primitive::{format_date, format_duration, format_primitive};
|
|
pub use crate::value::range::{Range, RangeInclusion};
|
|
pub use crate::value::value_structure::{ValueResource, ValueStructure};
|
|
pub use crate::value::{merge_descriptors, UntaggedValue, Value};
|