pub struct RegressionConformalMetrics {
pub target_index: Option<usize>,
pub measurement_status: ConformalMeasurementStatus,
pub empirical_coverage: f64,
pub coverage_gap: f64,
pub mean_width: Option<f64>,
pub median_width: Option<f64>,
pub interval_score: Option<f64>,
}Expand description
Reconstructed regression interval metrics for one coverage and target scope.
Fields§
§target_index: Option<usize>Target column for marginal metrics; None for a joint-max summary.
measurement_status: ConformalMeasurementStatus§empirical_coverage: f64§coverage_gap: f64§mean_width: Option<f64>§median_width: Option<f64>§interval_score: Option<f64>Trait Implementations§
Source§impl Clone for RegressionConformalMetrics
impl Clone for RegressionConformalMetrics
Source§fn clone(&self) -> RegressionConformalMetrics
fn clone(&self) -> RegressionConformalMetrics
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 RegressionConformalMetrics
impl Debug for RegressionConformalMetrics
impl StructuralPartialEq for RegressionConformalMetrics
Auto Trait Implementations§
impl Freeze for RegressionConformalMetrics
impl RefUnwindSafe for RegressionConformalMetrics
impl Send for RegressionConformalMetrics
impl Sync for RegressionConformalMetrics
impl Unpin for RegressionConformalMetrics
impl UnsafeUnpin for RegressionConformalMetrics
impl UnwindSafe for RegressionConformalMetrics
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