pub struct RocCurveData {
pub points: Vec<RocPoint>,
pub auc: f64,
}Expand description
An ROC curve: its operating points (from (0,0) to (1,1)) and the area
under it.
Fields§
§points: Vec<RocPoint>Operating points, ascending in FPR.
auc: f64Area under the ROC curve, in [0, 1].
Trait Implementations§
Source§impl Clone for RocCurveData
impl Clone for RocCurveData
Source§fn clone(&self) -> RocCurveData
fn clone(&self) -> RocCurveData
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 RocCurveData
impl Debug for RocCurveData
Source§impl PartialEq for RocCurveData
impl PartialEq for RocCurveData
impl StructuralPartialEq for RocCurveData
Auto Trait Implementations§
impl Freeze for RocCurveData
impl RefUnwindSafe for RocCurveData
impl Send for RocCurveData
impl Sync for RocCurveData
impl Unpin for RocCurveData
impl UnsafeUnpin for RocCurveData
impl UnwindSafe for RocCurveData
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