use crate::aes::Aesthetic;
use crate::coord::Coord;
use crate::data::DataFrame;
use crate::position::identity::PositionIdentity;
use crate::position::Position;
use crate::render::backend::{DrawBackend, LineStyle, Linetype, PointShape, PointStyle};
use crate::render::RenderError;
use crate::scale::ScaleSet;
use crate::stat::qq::{StatQQ, StatQQLine};
use crate::stat::Stat;
use crate::theme::Theme;
use super::{Geom, GeomParams};
pub struct GeomQQ {
pub size: f64,
pub color: (u8, u8, u8),
pub alpha: f64,
}
impl Default for GeomQQ {
fn default() -> Self {
GeomQQ {
size: 3.0,
color: (0, 0, 0),
alpha: 1.0,
}
}
}
impl Geom for GeomQQ {
fn draw(
&self,
data: &DataFrame,
coord: &dyn Coord,
scales: &ScaleSet,
_theme: &Theme,
backend: &mut dyn DrawBackend,
) -> Result<(), RenderError> {
let x_col = data
.column("x")
.ok_or(RenderError::MissingAesthetic("x".into()))?;
let y_col = data
.column("y")
.ok_or(RenderError::MissingAesthetic("y".into()))?;
let color_col = data.column("color");
let plot_area = backend.plot_area();
let x_scale = scales.get(&Aesthetic::X);
let y_scale = scales.get(&Aesthetic::Y);
for i in 0..data.nrows() {
let nx = x_scale.map(|s| s.map(&x_col[i])).unwrap_or(0.0);
let ny = y_scale.map(|s| s.map(&y_col[i])).unwrap_or(0.0);
let (px, py) = coord.transform((nx, ny), &plot_area);
let pt_color = color_col
.and_then(|cc| scales.map_color(&Aesthetic::Color, &cc[i]))
.unwrap_or(self.color);
backend.draw_shape(
(px, py),
self.size,
&PointStyle {
color: pt_color,
alpha: self.alpha,
filled: true,
shape: PointShape::Circle,
},
)?;
}
Ok(())
}
fn required_aes(&self) -> Vec<Aesthetic> {
vec![Aesthetic::Y]
}
fn default_stat(&self) -> Box<dyn Stat> {
Box::new(StatQQ)
}
fn default_position(&self) -> Box<dyn Position> {
Box::new(PositionIdentity)
}
fn default_params(&self) -> GeomParams {
GeomParams::default()
}
fn name(&self) -> &str {
"qq"
}
fn set_series_color(&mut self, color: (u8, u8, u8)) {
self.color = color;
}
}
pub struct GeomQQLine {
pub color: (u8, u8, u8),
pub width: f64,
pub alpha: f64,
}
impl Default for GeomQQLine {
fn default() -> Self {
GeomQQLine {
color: (255, 0, 0),
width: 1.0,
alpha: 1.0,
}
}
}
impl Geom for GeomQQLine {
fn draw(
&self,
data: &DataFrame,
coord: &dyn Coord,
scales: &ScaleSet,
_theme: &Theme,
backend: &mut dyn DrawBackend,
) -> Result<(), RenderError> {
let x_col = data
.column("x")
.ok_or(RenderError::MissingAesthetic("x".into()))?;
let y_col = data
.column("y")
.ok_or(RenderError::MissingAesthetic("y".into()))?;
let plot_area = backend.plot_area();
let x_scale = scales.get(&Aesthetic::X);
let y_scale = scales.get(&Aesthetic::Y);
let points: Vec<(f64, f64)> = (0..data.nrows())
.map(|i| {
let nx = x_scale.map(|s| s.map(&x_col[i])).unwrap_or(0.0);
let ny = y_scale.map(|s| s.map(&y_col[i])).unwrap_or(0.0);
coord.transform((nx, ny), &plot_area)
})
.collect();
if points.len() >= 2 {
backend.draw_line(
&points,
&LineStyle {
color: self.color,
alpha: self.alpha,
width: self.width,
linetype: Linetype::Dashed,
},
)?;
}
Ok(())
}
fn required_aes(&self) -> Vec<Aesthetic> {
vec![Aesthetic::Y]
}
fn default_stat(&self) -> Box<dyn Stat> {
Box::new(StatQQLine)
}
fn default_position(&self) -> Box<dyn Position> {
Box::new(PositionIdentity)
}
fn default_params(&self) -> GeomParams {
GeomParams::default()
}
fn name(&self) -> &str {
"qq_line"
}
fn set_series_color(&mut self, color: (u8, u8, u8)) {
self.color = color;
}
}