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
IntoDataFrameRow
intoDataframe
. Typical usage involves using the derive-macroIntoDataFrameRow
on a struct, which would generateimpl IntoDataframe<T> for Vec<T>
.