ruviz 0.4.2

High-performance 2D plotting library for Rust
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
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
# Your First Plot

Create your first visualization with ruviz in 5 minutes.

## Quick Start

### 1. Create New Project

```bash
cargo new my_plot
cd my_plot
cargo add ruviz
```

### 2. Write Your First Plot

Edit `src/main.rs`:

```rust
use ruviz::prelude::*;

fn main() -> Result<(), Box<dyn std::error::Error>> {
    // Data
    let x = vec![0.0, 1.0, 2.0, 3.0, 4.0];
    let y = vec![0.0, 1.0, 4.0, 9.0, 16.0];

    // Plot
    Plot::new()
        .line(&x, &y)
        .title("My First Plot")
        .xlabel("X axis")
        .ylabel("Y axis")
        .save("my_first_plot.png")?;

    println!("✅ Plot saved to my_first_plot.png");
    Ok(())
}
```

### 3. Run

```bash
cargo run
```

**Output**: `my_first_plot.png` with a line plot of y = x^2

## Understanding the Code

### Imports

```rust
use ruviz::prelude::*;
```

The `prelude` module includes all commonly used types and traits. This gives you access to:
- `Plot` - Main plotting struct
- `Color`, `MarkerStyle`, `LineStyle` - Styling types
- `Position` - Legend positioning
- Common traits for data conversion

### Error Handling

```rust
fn main() -> Result<(), Box<dyn std::error::Error>>
```

ruviz operations return `Result` types. Use `?` operator for clean error propagation:

```rust
.save("plot.png")?;  // Propagate errors automatically
```

Or handle errors explicitly:

```rust
match plot.save("plot.png") {
    Ok(_) => println!("Success!"),
    Err(e) => eprintln!("Error: {}", e),
}
```

### Builder Pattern

ruviz uses **method chaining** for fluent API:

```rust
Plot::new()           // Create plot
    .line(&x, &y)     // Add line series
    .title("Title")   // Set title
    .xlabel("X")      // Set x label
    .ylabel("Y")      // Set y label
    .save("file.png") // Save to file
```

Each method returns `Self`, enabling chaining.

## Common Plot Types

### Line Plot

```rust
use ruviz::prelude::*;

let x = vec![0.0, 1.0, 2.0, 3.0, 4.0];
let y = vec![0.0, 1.0, 4.0, 9.0, 16.0];

Plot::new()
    .line(&x, &y)
    .title("Line Plot")
    .save("line.png")?;
```

### Scatter Plot

```rust
use ruviz::prelude::*;

let x = vec![1.0, 2.0, 3.0, 4.0, 5.0];
let y = vec![2.0, 4.0, 3.0, 5.0, 4.5];

Plot::new()
    .scatter(&x, &y)
    .marker(MarkerStyle::Circle)
    .marker_size(8.0)
    .title("Scatter Plot")
    .save("scatter.png")?;
```

### Bar Chart

```rust
use ruviz::prelude::*;

let categories = ["A", "B", "C", "D"];
let values = vec![10.0, 25.0, 17.0, 30.0];

Plot::new()
    .bar(&categories, &values)
    .title("Bar Chart")
    .xlabel("Category")
    .ylabel("Value")
    .save("bar.png")?;
```

### Histogram

```rust
use ruviz::prelude::*;

let data: Vec<f64> = (0..1000)
    .map(|i| {
        let x = i as f64 * 0.05;
        100.0 + 15.0 * x.sin() + 5.0 * (x * 0.5).cos()
    })
    .collect();

Plot::new()
    .histogram(&data, None)  // Auto bin count
    .title("Histogram")
    .xlabel("Value")
    .ylabel("Frequency")
    .save("histogram.png")?;
```

Add to `Cargo.toml`:
```toml
[dependencies]
ruviz = "0.4.2"
```

## Customization Basics

### Colors

```rust
use ruviz::prelude::*;

Plot::new()
    .line(&x, &y)
    .color(Color::from_rgb(255, 0, 0))  // Red line
    .save("red_line.png")?;
```

### Line Styles

```rust
use ruviz::prelude::*;

Plot::new()
    .line(&x, &y)
    .line_style(LineStyle::Dashed)
    .line_width(2.0)
    .save("dashed_line.png")?;
```

### Markers

```rust
use ruviz::prelude::*;

Plot::new()
    .scatter(&x, &y)
    .marker(MarkerStyle::Circle)
    .marker_size(10.0)
    .color(Color::from_rgb(0, 0, 255))
    .save("blue_circles.png")?;
```

### Grid

```rust
use ruviz::prelude::*;

Plot::new()
    .line(&x, &y)
    .grid(true)  // Enable grid
    .save("grid_plot.png")?;
```

## Multiple Series

### Basic Multi-Series

```rust
use ruviz::prelude::*;

let x = vec![0.0, 1.0, 2.0, 3.0, 4.0];
let y1 = vec![0.0, 1.0, 4.0, 9.0, 16.0];
let y2 = vec![0.0, 2.0, 4.0, 6.0, 8.0];

Plot::new()
    .line(&x, &y1)
        .label("Quadratic")
        .color(Color::from_rgb(255, 0, 0))
    .line(&x, &y2)
        .label("Linear")
        .color(Color::from_rgb(0, 0, 255))
    .legend(Position::TopLeft)
    .title("Multiple Series")
    .save("multi_series.png")?;
```

### Mixing Plot Types

```rust
use ruviz::prelude::*;

let x = vec![0.0, 1.0, 2.0, 3.0, 4.0];
let y_line = vec![1.0, 2.0, 3.0, 4.0, 5.0];
let y_scatter = vec![1.5, 2.3, 2.9, 4.2, 4.8];

Plot::new()
    .line(&x, &y_line)
        .label("Theory")
        .color(Color::from_rgb(0, 0, 255))
    .scatter(&x, &y_scatter)
        .label("Measured")
        .marker(MarkerStyle::Circle)
        .color(Color::from_rgb(255, 0, 0))
    .legend(Position::TopLeft)
    .title("Theory vs Measurement")
    .save("mixed_plot.png")?;
```

## Working with Data

### From Vectors

```rust
let x: Vec<f64> = vec![0.0, 1.0, 2.0, 3.0, 4.0];
let y: Vec<f64> = vec![0.0, 1.0, 4.0, 9.0, 16.0];

Plot::new()
    .line(&x, &y)
    .save("from_vec.png")?;
```

### From Arrays

```rust
let x = [0.0, 1.0, 2.0, 3.0, 4.0];
let y = [0.0, 1.0, 4.0, 9.0, 16.0];

Plot::new()
    .line(&x, &y)
    .save("from_array.png")?;
```

### From Ranges

```rust
let x: Vec<f64> = (0..100).map(|i| i as f64 * 0.1).collect();
let y: Vec<f64> = x.iter().map(|v| v.sin()).collect();

Plot::new()
    .line(&x, &y)
    .title("Sine Wave")
    .save("sine.png")?;
```

### With ndarray (optional)

Add to `Cargo.toml`:
```toml
[dependencies]
ruviz = { version = "0.4.2", features = ["ndarray_support"] }
ndarray = "0.15"
```

```rust
use ruviz::prelude::*;
use ndarray::Array1;

let x = Array1::linspace(0.0, 10.0, 100);
let y = x.mapv(|v| v.sin());

Plot::new()
    .line(&x, &y)
    .title("ndarray Example")
    .save("ndarray_plot.png")?;
```

## Configuration Options

### Figure Size

```rust
Plot::new()
    .dimensions(1200, 800)  // Width x Height pixels
    .line(&x, &y)
    .save("custom_size.png")?;
```

### DPI (Resolution)

```rust
Plot::new()
    .dpi(300)  // High resolution for publication
    .line(&x, &y)
    .save("high_res.png")?;
```

### Axis Limits

```rust
Plot::new()
    .line(&x, &y)
    .xlim(0.0, 10.0)
    .ylim(-5.0, 5.0)
    .save("custom_limits.png")?;
```

Passing descending bounds, such as `.xlim(10.0, 0.0)`, preserves a reversed axis.

### Themes

```rust
use ruviz::prelude::*;

Plot::new()
    .theme(Theme::dark())      // Dark background
    .line(&x, &y)
    .save("dark_theme.png")?;

Plot::new()
    .theme(Theme::publication())  // Scientific publication
    .line(&x, &y)
    .save("publication.png")?;

Plot::new()
    .theme(Theme::seaborn())   // seaborn-like styling
    .line(&x, &y)
    .save("seaborn.png")?;
```

## Complete Example

```rust
use ruviz::prelude::*;
use std::f64::consts::PI;

fn main() -> Result<(), Box<dyn std::error::Error>> {
    // Generate data
    let x: Vec<f64> = (0..200).map(|i| i as f64 * 0.05).collect();
    let y_sin: Vec<f64> = x.iter().map(|v| v.sin()).collect();
    let y_cos: Vec<f64> = x.iter().map(|v| v.cos()).collect();

    // Create plot
    Plot::new()
        .dimensions(1000, 600)
        .dpi(150)
        .theme(Theme::light())
        // Sine wave
        .line(&x, &y_sin)
            .label("sin(x)")
            .color(Color::from_rgb(0, 0, 255))
            .line_width(2.0)
        // Cosine wave
        .line(&x, &y_cos)
            .label("cos(x)")
            .color(Color::from_rgb(255, 0, 0))
            .line_style(LineStyle::Dashed)
            .line_width(2.0)
        // Configuration
        .title("Trigonometric Functions")
        .xlabel("x (radians)")
        .ylabel("y")
        .xlim(0.0, 2.0 * PI)
        .ylim(-1.5, 1.5)
        .grid(true)
        .legend(Position::TopRight)
        .save("trig_functions.png")?;

    println!("✅ Plot saved to trig_functions.png");
    Ok(())
}
```

## Troubleshooting

### Plot file not created

**Check**: Error handling
```rust
// Don't ignore errors
Plot::new().line(&x, &y).save("plot.png")?;

// Or handle explicitly
match Plot::new().line(&x, &y).save("plot.png") {
    Ok(_) => println!("Success"),
    Err(e) => eprintln!("Error: {}", e),
}
```

### Empty or blank plot

**Check**: Data validity
```rust
// Ensure x and y have same length
assert_eq!(x.len(), y.len());

// Ensure data is not empty
assert!(!x.is_empty());

// Check for NaN or infinity
assert!(y.iter().all(|v| v.is_finite()));
```

### Performance issues

**Use**: Release mode for large datasets
```bash
cargo run --release  # Much faster than debug builds
```

### Legend not showing

**Add**: Labels to series
```rust
Plot::new()
    .line(&x, &y)
        .label("My Data")  // Required for legend
    .legend(Position::TopRight)
    .save("plot.png")?;
```

## Next Steps

🎉 **Congratulations!** You've created your first plot with ruviz.

**Continue learning**:
- **[Plot Types]04_plot_types.md** - Explore all available plot types
- **[Styling & Themes]05_styling.md** - Advanced customization
- **[Subplots]06_subplots.md** - Multi-panel figures
- **[Examples]../../examples/** - Browse working examples

## Quick Reference

### Essential Pattern
```rust
use ruviz::prelude::*;

Plot::new()
    .line(&x, &y)          // or .scatter(), .bar(), .histogram()
    .title("Title")
    .xlabel("X")
    .ylabel("Y")
    .save("plot.png")?;
```

### Common Customizations
```rust
.dimensions(width, height)     // Figure size
.dpi(resolution)               // Image resolution
.color(Color::from_rgb(r,g,b)) // Series color
.line_width(width)             // Line thickness
.marker(MarkerStyle::Circle)   // Marker shape
.marker_size(size)             // Marker size
.line_style(LineStyle::Dashed) // Line pattern
.grid(true)                    // Show grid
.xlim(min, max)                // X axis range (descending values reverse it)
.ylim(min, max)                // Y axis range (descending values reverse it)
.legend(Position::TopRight)    // Show legend
.theme(Theme::dark())          // Apply theme
```

---

**Ready for more?** → [Plot Types Guide](04_plot_types.md)