pub struct QqLine {
pub slope: f64,
pub intercept: f64,
}Expand description
The fitted reference line of a probability plot, y = slope * x + intercept,
where x are the theoretical quantiles and y the sample quantiles.
Fields§
§slope: f64Slope of the reference line.
intercept: f64Intercept of the reference line.
Trait Implementations§
impl Copy for QqLine
impl StructuralPartialEq for QqLine
Auto Trait Implementations§
impl Freeze for QqLine
impl RefUnwindSafe for QqLine
impl Send for QqLine
impl Sync for QqLine
impl Unpin for QqLine
impl UnsafeUnpin for QqLine
impl UnwindSafe for QqLine
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