pub struct MethodsPlsDataset {
pub sample_ids: Vec<SampleId>,
pub x: MethodsPlsMatrix,
pub y: Option<MethodsPlsMatrix>,
pub target_names: Vec<String>,
}Expand description
One identity-keyed dataset returned by the portable PLS provider capability.
Fields§
§sample_ids: Vec<SampleId>§x: MethodsPlsMatrix§y: Option<MethodsPlsMatrix>Targets are required for fitting/CV scoring, but deliberately absent for production PREDICT. A predictor must never require labels merely to materialize an inference cohort.
target_names: Vec<String>Implementations§
Trait Implementations§
Source§impl Clone for MethodsPlsDataset
impl Clone for MethodsPlsDataset
Source§fn clone(&self) -> MethodsPlsDataset
fn clone(&self) -> MethodsPlsDataset
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MethodsPlsDataset
impl Debug for MethodsPlsDataset
Source§impl PartialEq for MethodsPlsDataset
impl PartialEq for MethodsPlsDataset
impl StructuralPartialEq for MethodsPlsDataset
Auto Trait Implementations§
impl Freeze for MethodsPlsDataset
impl RefUnwindSafe for MethodsPlsDataset
impl Send for MethodsPlsDataset
impl Sync for MethodsPlsDataset
impl Unpin for MethodsPlsDataset
impl UnsafeUnpin for MethodsPlsDataset
impl UnwindSafe for MethodsPlsDataset
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