criterion_plot/errorbar.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
//! Error bar plots
use std::borrow::Cow;
use std::iter::IntoIterator;
use crate::data::Matrix;
use crate::traits::{self, Data, Set};
use crate::{
Color, Display, ErrorBarDefault, Figure, Label, LineType, LineWidth, Plot, PointSize,
PointType, Script,
};
/// Properties common to error bar plots
pub struct Properties {
color: Option<Color>,
label: Option<Cow<'static, str>>,
line_type: LineType,
linewidth: Option<f64>,
point_size: Option<f64>,
point_type: Option<PointType>,
style: Style,
}
impl ErrorBarDefault<Style> for Properties {
fn default(style: Style) -> Properties {
Properties {
color: None,
label: None,
line_type: LineType::Solid,
linewidth: None,
point_type: None,
point_size: None,
style,
}
}
}
impl Script for Properties {
// Allow clippy::format_push_string even with older versions of rust (<1.62) which
// don't have it defined.
#[allow(clippy::all)]
fn script(&self) -> String {
let mut script = format!("with {} ", self.style.display());
script.push_str(&format!("lt {} ", self.line_type.display()));
if let Some(lw) = self.linewidth {
script.push_str(&format!("lw {} ", lw))
}
if let Some(color) = self.color {
script.push_str(&format!("lc rgb '{}' ", color.display()))
}
if let Some(pt) = self.point_type {
script.push_str(&format!("pt {} ", pt.display()))
}
if let Some(ps) = self.point_size {
script.push_str(&format!("ps {} ", ps))
}
if let Some(ref label) = self.label {
script.push_str("title '");
script.push_str(label);
script.push('\'')
} else {
script.push_str("notitle")
}
script
}
}
impl Set<Color> for Properties {
/// Changes the color of the error bars
fn set(&mut self, color: Color) -> &mut Properties {
self.color = Some(color);
self
}
}
impl Set<Label> for Properties {
/// Sets the legend label
fn set(&mut self, label: Label) -> &mut Properties {
self.label = Some(label.0);
self
}
}
impl Set<LineType> for Properties {
/// Change the line type
///
/// **Note** By default `Solid` lines are used
fn set(&mut self, lt: LineType) -> &mut Properties {
self.line_type = lt;
self
}
}
impl Set<LineWidth> for Properties {
/// Changes the linewidth
///
/// # Panics
///
/// Panics if `lw` is a non-positive value
fn set(&mut self, lw: LineWidth) -> &mut Properties {
let lw = lw.0;
assert!(lw > 0.);
self.linewidth = Some(lw);
self
}
}
impl Set<PointSize> for Properties {
/// Changes the size of the points
///
/// # Panics
///
/// Panics if `size` is a non-positive value
fn set(&mut self, ps: PointSize) -> &mut Properties {
let ps = ps.0;
assert!(ps > 0.);
self.point_size = Some(ps);
self
}
}
impl Set<PointType> for Properties {
/// Changes the point type
fn set(&mut self, pt: PointType) -> &mut Properties {
self.point_type = Some(pt);
self
}
}
#[derive(Clone, Copy)]
enum Style {
XErrorBars,
XErrorLines,
YErrorBars,
YErrorLines,
}
impl Display<&'static str> for Style {
fn display(&self) -> &'static str {
match *self {
Style::XErrorBars => "xerrorbars",
Style::XErrorLines => "xerrorlines",
Style::YErrorBars => "yerrorbars",
Style::YErrorLines => "yerrorlines",
}
}
}
/// Asymmetric error bar plots
pub enum ErrorBar<X, Y, L, H> {
/// Horizontal error bars
XErrorBars {
/// X coordinate of the data points
x: X,
/// Y coordinate of the data points
y: Y,
/// X coordinate of the left end of the error bar
x_low: L,
/// Y coordinate of the right end of the error bar
x_high: H,
},
/// Horizontal error bars, where each point is joined by a line
XErrorLines {
/// X coordinate of the data points
x: X,
/// Y coordinate of the data points
y: Y,
/// X coordinate of the left end of the error bar
x_low: L,
/// Y coordinate of the right end of the error bar
x_high: H,
},
/// Vertical error bars
YErrorBars {
/// X coordinate of the data points
x: X,
/// Y coordinate of the data points
y: Y,
/// Y coordinate of the bottom of the error bar
y_low: L,
/// Y coordinate of the top of the error bar
y_high: H,
},
/// Vertical error bars, where each point is joined by a line
YErrorLines {
/// X coordinate of the data points
x: X,
/// Y coordinate of the data points
y: Y,
/// Y coordinate of the bottom of the error bar
y_low: L,
/// Y coordinate of the top of the error bar
y_high: H,
},
}
impl<X, Y, L, H> ErrorBar<X, Y, L, H> {
fn style(&self) -> Style {
match *self {
ErrorBar::XErrorBars { .. } => Style::XErrorBars,
ErrorBar::XErrorLines { .. } => Style::XErrorLines,
ErrorBar::YErrorBars { .. } => Style::YErrorBars,
ErrorBar::YErrorLines { .. } => Style::YErrorLines,
}
}
}
impl<X, Y, L, H> traits::Plot<ErrorBar<X, Y, L, H>> for Figure
where
H: IntoIterator,
H::Item: Data,
L: IntoIterator,
L::Item: Data,
X: IntoIterator,
X::Item: Data,
Y: IntoIterator,
Y::Item: Data,
{
type Properties = Properties;
fn plot<F>(&mut self, e: ErrorBar<X, Y, L, H>, configure: F) -> &mut Figure
where
F: FnOnce(&mut Properties) -> &mut Properties,
{
let (x_factor, y_factor) = crate::scale_factor(&self.axes, crate::Axes::BottomXLeftY);
let style = e.style();
let (x, y, length, height, e_factor) = match e {
ErrorBar::XErrorBars {
x,
y,
x_low,
x_high,
}
| ErrorBar::XErrorLines {
x,
y,
x_low,
x_high,
} => (x, y, x_low, x_high, x_factor),
ErrorBar::YErrorBars {
x,
y,
y_low,
y_high,
}
| ErrorBar::YErrorLines {
x,
y,
y_low,
y_high,
} => (x, y, y_low, y_high, y_factor),
};
let data = Matrix::new(
izip!(x, y, length, height),
(x_factor, y_factor, e_factor, e_factor),
);
self.plots.push(Plot::new(
data,
configure(&mut ErrorBarDefault::default(style)),
));
self
}
}
// TODO XY error bar
// pub struct XyErrorBar<X, Y, XL, XH, YL, YH> {
// x: X,
// y: Y,
// x_low: XL,
// x_high: XH,
// y_low: YL,
// y_high: YH,
// }
// TODO Symmetric error bars
// pub enum SymmetricErrorBar {
// XSymmetricErrorBar { x: X, y: Y, x_delta: D },
// XSymmetricErrorLines { x: X, y: Y, x_delta: D },
// YSymmetricErrorBar { x: X, y: Y, y_delta: D },
// YSymmetricErrorLines { x: X, y: Y, y_delta: D },
// }