plotlars-plotters 0.12.3

Plotters backend for plotlars
Documentation
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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
use plotlars_core::Plot;

/// Plotters rendering extension trait. Provides static image output methods.
///
/// Available on all types implementing the core `Plot` trait via blanket impl.
pub trait PlottersExt: Plot {
    /// Render and display the plot.
    ///
    /// In Jupyter/evcxr: displays inline PNG.
    /// Otherwise: writes a temp PNG and opens the OS image viewer.
    fn plot(&self);

    /// Save the plot to a file. Format inferred from extension:
    /// - `.png` -> BitMapBackend
    /// - `.svg` -> SVGBackend
    fn save(&self, path: &str);

    /// Render the plot to an SVG string (in-memory, no file I/O).
    fn to_svg(&self) -> String;
}

impl<T: Plot> PlottersExt for T {
    fn plot(&self) {
        crate::render::plot_interactive(self);
    }

    fn save(&self, path: &str) {
        crate::render::save_to_file(self, path);
    }

    fn to_svg(&self) -> String {
        crate::render::render_to_svg_string(self)
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use plotlars_core::components::Rgb;
    use plotlars_core::plots::barplot::BarPlot;
    use plotlars_core::plots::boxplot::BoxPlot;
    use plotlars_core::plots::candlestick::CandlestickPlot;
    use plotlars_core::plots::heatmap::HeatMap;
    use plotlars_core::plots::histogram::Histogram;
    use plotlars_core::plots::lineplot::LinePlot;
    use plotlars_core::plots::scatterplot::ScatterPlot;
    use plotlars_core::plots::timeseriesplot::TimeSeriesPlot;
    use polars::prelude::*;

    #[test]
    fn scatter_plot_renders_to_svg() {
        let df = df![
            "x" => [1.0, 2.0, 3.0, 4.0],
            "y" => [10.0, 20.0, 15.0, 25.0]
        ]
        .unwrap();
        let plot = ScatterPlot::builder().data(&df).x("x").y("y").build();
        let svg = plot.to_svg();
        assert!(!svg.is_empty());
        assert!(svg.contains("<svg"));
    }

    #[test]
    fn scatter_plot_grouped_renders() {
        let df = df![
            "x" => [1.0, 2.0, 3.0, 4.0],
            "y" => [10.0, 20.0, 15.0, 25.0],
            "g" => ["a", "a", "b", "b"]
        ]
        .unwrap();
        let plot = ScatterPlot::builder()
            .data(&df)
            .x("x")
            .y("y")
            .group("g")
            .build();
        let svg = plot.to_svg();
        assert!(!svg.is_empty());
        assert!(svg.contains("<svg"));
    }

    #[test]
    fn scatter_plot_styled_renders() {
        let df = df![
            "x" => [1.0, 2.0, 3.0],
            "y" => [4.0, 5.0, 6.0]
        ]
        .unwrap();
        let plot = ScatterPlot::builder()
            .data(&df)
            .x("x")
            .y("y")
            .color(Rgb(255, 0, 0))
            .opacity(0.7)
            .size(10)
            .build();
        let svg = plot.to_svg();
        assert!(!svg.is_empty());
    }

    #[test]
    fn scatter_plot_with_title_renders() {
        let df = df![
            "x" => [1.0, 2.0, 3.0],
            "y" => [4.0, 5.0, 6.0]
        ]
        .unwrap();
        let plot = ScatterPlot::builder()
            .data(&df)
            .x("x")
            .y("y")
            .plot_title("My Plot")
            .x_title("X Axis")
            .y_title("Y Axis")
            .build();
        let svg = plot.to_svg();
        assert!(svg.contains("My Plot"));
    }

    #[test]
    fn horizontal_legend_border_debug() {
        use plotlars_core::components::{Legend, Orientation};
        let df = df![
            "x" => [1.0, 2.0, 3.0],
            "y" => [4.0, 5.0, 6.0],
            "g" => ["a", "b", "c"]
        ]
        .unwrap();
        let plot = ScatterPlot::builder()
            .data(&df)
            .x("x")
            .y("y")
            .group("g")
            .legend_title("test")
            .legend(
                &Legend::new()
                    .orientation(Orientation::Horizontal)
                    .border_width(50),
            )
            .build();
        let svg = plot.to_svg();
        assert!(
            svg.contains("stroke-width=\"50\""),
            "SVG should contain stroke-width=50"
        );
    }

    #[test]
    fn line_plot_renders_to_svg() {
        let df = df![
            "x" => [1.0, 2.0, 3.0, 4.0],
            "y" => [10.0, 20.0, 15.0, 25.0]
        ]
        .unwrap();
        let plot = LinePlot::builder().data(&df).x("x").y("y").build();
        let svg = plot.to_svg();
        assert!(!svg.is_empty());
        assert!(svg.contains("<svg"));
    }

    #[test]
    fn line_plot_additional_lines_renders() {
        let df = df![
            "x" => [1.0, 2.0, 3.0],
            "y1" => [4.0, 5.0, 6.0],
            "y2" => [7.0, 8.0, 9.0]
        ]
        .unwrap();
        let plot = LinePlot::builder()
            .data(&df)
            .x("x")
            .y("y1")
            .additional_lines(vec!["y2"])
            .build();
        let svg = plot.to_svg();
        assert!(!svg.is_empty());
    }

    #[test]
    fn bar_plot_renders_to_svg() {
        let df = df![
            "labels" => ["a", "b", "c"],
            "values" => [10.0, 20.0, 30.0]
        ]
        .unwrap();
        let plot = BarPlot::builder()
            .data(&df)
            .labels("labels")
            .values("values")
            .build();
        let svg = plot.to_svg();
        assert!(!svg.is_empty());
        assert!(svg.contains("<svg"));
    }

    #[test]
    fn bar_plot_grouped_renders() {
        let df = df![
            "labels" => ["a", "b", "a", "b"],
            "values" => [10.0, 20.0, 30.0, 40.0],
            "g" => ["x", "x", "y", "y"]
        ]
        .unwrap();
        let plot = BarPlot::builder()
            .data(&df)
            .labels("labels")
            .values("values")
            .group("g")
            .build();
        let svg = plot.to_svg();
        assert!(!svg.is_empty());
    }

    #[test]
    fn bar_plot_horizontal_renders() {
        let df = df![
            "labels" => ["a", "b", "c"],
            "values" => [10.0, 20.0, 30.0]
        ]
        .unwrap();
        let plot = BarPlot::builder()
            .data(&df)
            .labels("labels")
            .values("values")
            .orientation(plotlars_core::components::Orientation::Horizontal)
            .build();
        let svg = plot.to_svg();
        assert!(!svg.is_empty());
    }

    #[test]
    fn histogram_renders_to_svg() {
        let df = df!["x" => [1.0, 2.0, 2.0, 3.0, 3.0, 3.0]].unwrap();
        let plot = Histogram::builder().data(&df).x("x").build();
        let svg = plot.to_svg();
        assert!(!svg.is_empty());
        assert!(svg.contains("<svg"));
    }

    #[test]
    fn boxplot_renders_to_svg() {
        let df = df![
            "species" => ["a", "a", "a", "a", "a", "b", "b", "b", "b", "b"],
            "value" => [1.0, 2.0, 3.0, 4.0, 5.0, 2.0, 3.0, 4.0, 5.0, 6.0]
        ]
        .unwrap();
        let plot = BoxPlot::builder()
            .data(&df)
            .labels("species")
            .values("value")
            .build();
        let svg = plot.to_svg();
        assert!(!svg.is_empty());
        assert!(svg.contains("<svg"));
    }

    #[test]
    fn boxplot_grouped_renders() {
        let df = df![
            "species" => ["a", "a", "a", "a", "b", "b", "b", "b"],
            "value" => [1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0],
            "g" => ["x", "x", "y", "y", "x", "x", "y", "y"]
        ]
        .unwrap();
        let plot = BoxPlot::builder()
            .data(&df)
            .labels("species")
            .values("value")
            .group("g")
            .build();
        let svg = plot.to_svg();
        assert!(!svg.is_empty());
        assert!(svg.contains("<svg"));
    }

    #[test]
    fn heatmap_renders_to_svg() {
        let df = df![
            "x" => ["a", "b", "c", "a", "b", "c"],
            "y" => ["p", "p", "p", "q", "q", "q"],
            "z" => [1.0, 2.0, 3.0, 4.0, 5.0, 6.0]
        ]
        .unwrap();
        let plot = HeatMap::builder().data(&df).x("x").y("y").z("z").build();
        let svg = plot.to_svg();
        assert!(!svg.is_empty());
        assert!(svg.contains("<svg"));
    }

    #[test]
    fn heatmap_with_palette_renders() {
        let df = df![
            "x" => ["a", "b", "a", "b"],
            "y" => ["p", "p", "q", "q"],
            "z" => [10.0, 20.0, 30.0, 40.0]
        ]
        .unwrap();
        let plot = HeatMap::builder()
            .data(&df)
            .x("x")
            .y("y")
            .z("z")
            .color_scale(plotlars_core::components::Palette::Hot)
            .build();
        let svg = plot.to_svg();
        assert!(!svg.is_empty());
    }

    #[test]
    fn candlestick_renders_to_svg() {
        let df = df![
            "date" => ["2024-01-01", "2024-01-02", "2024-01-03"],
            "open" => [100.0, 102.5, 101.0],
            "high" => [103.0, 104.0, 103.5],
            "low" => [99.0, 101.5, 100.0],
            "close" => [102.5, 101.0, 103.5]
        ]
        .unwrap();
        let plot = CandlestickPlot::builder()
            .data(&df)
            .dates("date")
            .open("open")
            .high("high")
            .low("low")
            .close("close")
            .build();
        let svg = plot.to_svg();
        assert!(!svg.is_empty());
        assert!(svg.contains("<svg"));
    }

    #[test]
    fn candlestick_with_colors_renders() {
        use plotlars_core::components::Direction;
        let df = df![
            "date" => ["2024-01-01", "2024-01-02", "2024-01-03"],
            "open" => [100.0, 102.5, 101.0],
            "high" => [103.0, 104.0, 103.5],
            "low" => [99.0, 101.5, 100.0],
            "close" => [102.5, 101.0, 103.5]
        ]
        .unwrap();
        let inc = Direction::new().line_color(Rgb(0, 150, 255));
        let dec = Direction::new().line_color(Rgb(200, 0, 100));
        let plot = CandlestickPlot::builder()
            .data(&df)
            .dates("date")
            .open("open")
            .high("high")
            .low("low")
            .close("close")
            .increasing(&inc)
            .decreasing(&dec)
            .build();
        let svg = plot.to_svg();
        assert!(!svg.is_empty());
    }

    #[test]
    fn timeseries_renders_to_svg() {
        let df = df![
            "date" => ["2024-01", "2024-02", "2024-03", "2024-04"],
            "y" => [10.0, 20.0, 15.0, 25.0]
        ]
        .unwrap();
        let plot = TimeSeriesPlot::builder().data(&df).x("date").y("y").build();
        let svg = plot.to_svg();
        assert!(!svg.is_empty());
        assert!(svg.contains("<svg"));
    }

    #[test]
    fn timeseries_additional_series_renders() {
        let df = df![
            "date" => ["2024-01", "2024-02", "2024-03", "2024-04"],
            "y1" => [10.0, 20.0, 15.0, 25.0],
            "y2" => [5.0, 15.0, 10.0, 20.0],
            "y3" => [8.0, 18.0, 12.0, 22.0]
        ]
        .unwrap();
        let plot = TimeSeriesPlot::builder()
            .data(&df)
            .x("date")
            .y("y1")
            .additional_series(vec!["y2", "y3"])
            .colors(vec![Rgb(128, 128, 128), Rgb(0, 122, 255), Rgb(255, 128, 0)])
            .build();
        let svg = plot.to_svg();
        assert!(!svg.is_empty());
        assert!(svg.contains("<svg"));
        // Should contain line elements for all 3 series
        assert!(svg.contains("<polyline"));
    }

    #[test]
    fn timeseries_dual_y_axis_renders() {
        use plotlars_core::components::axis::AxisSide;
        use plotlars_core::components::Axis;
        let df = df![
            "date" => ["2024-01", "2024-02", "2024-03", "2024-04"],
            "revenue" => [1000.0, 2000.0, 3000.0, 4000.0],
            "cost" => [100.0, 200.0, 150.0, 250.0]
        ]
        .unwrap();
        let plot = TimeSeriesPlot::builder()
            .data(&df)
            .x("date")
            .y("revenue")
            .additional_series(vec!["cost"])
            .colors(vec![Rgb(0, 0, 255), Rgb(255, 0, 0)])
            .y_title("revenue")
            .y2_title("cost")
            .y_axis(&Axis::new().value_color(Rgb(0, 0, 255)))
            .y2_axis(
                &Axis::new()
                    .axis_side(AxisSide::Right)
                    .value_color(Rgb(255, 0, 0)),
            )
            .build();
        let svg = plot.to_svg();
        assert!(!svg.is_empty());
        assert!(svg.contains("<svg"));
        // Should not contain the unsupported warning text
        // y2 axis labels should appear on right side
    }

    #[test]
    fn timeseries_365_points_with_dashed_lines() {
        use plotlars_core::components::Line as LineStyle;
        // Simulate debilt 2023 temps: 365 days, 3 series with dashed lines
        let dates: Vec<String> = (0..365)
            .map(|i| format!("2023-{:02}-{:02}", i / 30 + 1, i % 30 + 1))
            .collect();
        let tavg: Vec<f64> = (0..365)
            .map(|i| 10.0 + 10.0 * (i as f64 * 0.017).sin())
            .collect();
        let tmin: Vec<f64> = tavg.iter().map(|t| t - 5.0).collect();
        let tmax: Vec<f64> = tavg.iter().map(|t| t + 5.0).collect();

        let df = df![
            "date" => dates,
            "tavg" => tavg,
            "tmin" => tmin,
            "tmax" => tmax
        ]
        .unwrap();

        let start = std::time::Instant::now();
        let plot = TimeSeriesPlot::builder()
            .data(&df)
            .x("date")
            .y("tavg")
            .additional_series(vec!["tmin", "tmax"])
            .colors(vec![Rgb(128, 128, 128), Rgb(0, 122, 255), Rgb(255, 128, 0)])
            .lines(vec![LineStyle::Solid, LineStyle::Dot, LineStyle::Dot])
            .build();
        let svg = plot.to_svg();
        let elapsed = start.elapsed();

        assert!(!svg.is_empty());
        assert!(svg.contains("<svg"));
        assert!(
            svg.contains("stroke-dasharray"),
            "Dashed lines should have stroke-dasharray in SVG"
        );
        assert!(
            elapsed.as_secs() < 5,
            "Rendering took too long: {:?}",
            elapsed
        );
    }

    #[test]
    fn histogram_grouped_renders() {
        let df = df![
            "x" => [1.0, 2.0, 3.0, 4.0, 5.0, 6.0],
            "g" => ["a", "a", "a", "b", "b", "b"]
        ]
        .unwrap();
        let plot = Histogram::builder().data(&df).x("x").group("g").build();
        let svg = plot.to_svg();
        assert!(!svg.is_empty());
    }
}