Module extendr_api::wrapper::dataframe
source · Expand description
This provides an abstraction for R’s data.frame-constructor in Rust.
For a given struct say CustomRow, one may implement or derive IntoDataFrameRow,
thus being able to convert Vec<CustomRow> to an instance of Dataframe<CustomRow>,
see Dataframe.
Structs§
- A representation of a typed
data.frame
Traits§
- A trait to convert a collection of
IntoDataFrameRowintoDataframe. Typical usage involves using the derive-macroIntoDataFrameRowon a struct, which would generateimpl IntoDataframe<T> for Vec<T>.