pub struct SensitivityIndex {
pub variable_index: usize,
pub first_order: f64,
pub total_order: f64,
pub label: String,
}Expand description
Sensitivity index for a single input variable.
Fields§
§variable_index: usizeIndex of the input variable.
first_order: f64First-order sensitivity (main effect).
total_order: f64Total-order sensitivity (main + interactions).
label: StringHuman-readable label.
Trait Implementations§
Source§impl Clone for SensitivityIndex
impl Clone for SensitivityIndex
Source§impl Debug for SensitivityIndex
impl Debug for SensitivityIndex
Source§impl<'de> Deserialize<'de> for SensitivityIndex
impl<'de> Deserialize<'de> for SensitivityIndex
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SensitivityIndex
impl RefUnwindSafe for SensitivityIndex
impl Send for SensitivityIndex
impl Sync for SensitivityIndex
impl Unpin for SensitivityIndex
impl UnsafeUnpin for SensitivityIndex
impl UnwindSafe for SensitivityIndex
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