pub struct StatsModelsNodeOutput {
pub node_name: String,
pub entities: StringEntities,
pub x_variables: Vec<String>,
pub contrasts: Vec<ContrastInfo>,
pub design_matrix: Option<(Vec<String>, Vec<Vec<f64>>)>,
}Expand description
Output produced by running a stats model node.
Contains the design matrix, contrasts, and entity metadata for a single group within a node’s analysis. Multiple outputs may be produced per node when data is split by grouping variables.
Fields§
§node_name: String§entities: StringEntities§x_variables: Vec<String>§contrasts: Vec<ContrastInfo>§design_matrix: Option<(Vec<String>, Vec<Vec<f64>>)>Design matrix: (column_names, data_rows).
Implementations§
Trait Implementations§
Source§impl Clone for StatsModelsNodeOutput
impl Clone for StatsModelsNodeOutput
Source§fn clone(&self) -> StatsModelsNodeOutput
fn clone(&self) -> StatsModelsNodeOutput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for StatsModelsNodeOutput
impl RefUnwindSafe for StatsModelsNodeOutput
impl Send for StatsModelsNodeOutput
impl Sync for StatsModelsNodeOutput
impl Unpin for StatsModelsNodeOutput
impl UnsafeUnpin for StatsModelsNodeOutput
impl UnwindSafe for StatsModelsNodeOutput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more