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
use std::iter;
// This file is released into Public Domain.
use crate::common::*;
use gnuplot::{palettes::MAGMA, *};
mod common;
// https://github.com/gnuplot/gnuplot/blob/master/demo/candlesticks.dat
#[rustfmt::skip]
static CANDLESTICKS_STR: &str =
"1 1.5 2 2.4 4 6.
2 1.5 3 3.5 4 5.5
3 4.5 5 5.5 6 6.5
4 3.7 4.5 5.0 5.5 6.1
5 3.1 3.5 4.2 5 6.1
6 1 4 5.0 6 9
7 4 4 4.8 6 6.1
8 4 5 5.1 6 6.1
9 1.5 2 2.4 3 3.5
10 2.7 3 3.5 4 4.3";
fn example(c: Common)
{
let data: Vec<Vec<f64>> = CANDLESTICKS_STR
.split("\n")
.map(|line| {
line.split("\t")
.map(|v| v.trim().parse::<f64>().unwrap())
.collect()
})
.collect();
let extract_col = |i| data.iter().map(|l| l[i]).collect::<Vec<_>>();
let d1 = extract_col(0);
let d2 = extract_col(1);
let d5 = extract_col(4);
let d6 = extract_col(5);
let row_index: Vec<_> = (1..=d1.len() as u8).collect();
let by3 = |x| (((x % 3.0) + 1.0) / 6.0);
let by4 = |x| (((x % 4.0) + 1.0) / 7.0);
let argb_formula = |x: &f64| {
let a = 255.0 - 255.0 * (x - 5.5).abs() / 5.5;
let r = x * 51.0 / 2.0;
let g = (11.0 - x) * 51.0 / 2.0;
let b = ((5.5 - x).abs() * 2.0 * 510.0 / 9.0).round();
(a as u8, r as u8, g as u8, b as u8)
};
// Demo/test of variable color in many different plot styles
// Inspired by https://gnuplot.sourceforge.net/demo_6.0/varcolor.html
//
// The loop is run four times with different color sets: each one sets all the elements of a given
// plot to a different color, while making sure the colors align by x position: i.e. everything at x = 1
// uses the first color, everything at x = 2 uses the second and so on.
//
//
// The first color loop demonstrates usage of VariableIndexColor with indices to use gnuplot's default color styles,
// but make them align for multiple plot items on the same axis. This is implicity constructed from a Vec<u8> using
// the `IntoColor` trait but could equivalently be created explicitly using `Color(ColorType::VariableIndexColor(row_index.clone()))`
//
// The second color loop uses a `VariablePaletteColor`: this selects the color based on the current color palette and the
// input value for each data point. The palette is scaled to the maximum value in the `Vec<f64>` passed
// to the `VariablePaletteColor`.
//
// The third color loop uses an (implicit) `VariableARGBInteger`. The `Vec<(u8, u8, u8, u8)>` needed to construct the color
// is calculated in this case by the `argb_formula()` closure. An explicit `VariableARGBInteger` could also be constructed using
// `Color(ColorType::VariableARGBInteger(data)`.
// As an alternative, `VariableRGBInteger` is also defined that takes a 3-tuple of u8, rather than
// a 4 tuple.
for (color, label) in [
(Color(row_index.clone().into()), "VariableIndexColor"),
(
Color(VariablePaletteColor(
row_index.iter().map(|v| *v as f64).collect(),
)),
"VariablePaletteColor",
),
(
Color(d1.iter().map(argb_formula).collect::<Vec<_>>().into()),
"VariableARGBInteger",
),
]
{
let mut fg = Figure::new();
let ax = fg.axes2d();
ax.set_title(
&format!("variable color boxerror, points, xyerrorbars, and boxxyerror.\nColor used is a {label}"),
&[],
)
.set_y_range(Fix(-4.0), Fix(11.5))
.set_box_width(0.5, true)
.box_error_low_high(
&d1,
&d5,
&d2,
&d6,
&[
color.clone(),
FillAlpha(0.5),
BorderColor(RGBString("black")),
],
)
.points(&d1, iter::repeat(1), &[color.clone(), PointSymbol('D')])
.xy_error_bars(
&d1,
iter::repeat(8),
d1.iter().map(by3),
d1.iter().map(by4),
&[color.clone()],
)
.points(
&d1,
d2.iter().map(|v| -v / 2.0),
&[color.clone(), PointSymbol('O'), PointSize(3.0)],
)
.box_xy_error_delta(
&d1,
iter::repeat(10),
d1.iter().map(by3),
d1.iter().map(by4),
&[color.clone(), BorderColor(RGBString("black"))],
);
c.show(&mut fg, "variable_color");
}
// #####################################################################
// The example below shows the same graphs as in the loop, but using a set of saved colormaps
// similar to palette in gnuplot terms, but the a single (current) palette is applied to all plots by default.
// By contrast, you can create multiple named colormaps.
//
// As with `VariablePaletteColor``, this Color takes a `Vec<f64>` that says which point in the colormap to use,
// but it also takes a the name of the colormap from which to draw the colors.
//
// Note that the Color range appears to be shared across plots: i.e. if one plot has
// color data (the `Vec<f64>`) in the range 0-1, and another in the range 1-100, all the
// colors in the first plot will be right at the bottom end of its colormap, even if that's
// a different colormap to the one used in the second plot.
let mut fg = Figure::new();
let ax = fg.axes2d();
// First create the colormaps we will later refer to
// MAGMA is one of the colormaps provided with rust gnuplot
ax.create_colormap("magma", MAGMA);
// HOT is one of the colormaps provided with rust gnuplot
ax.create_colormap("hot", HOT);
// ocean (green-blue-white) as per the gnuplot documentation
ax.create_colormap("ocean", PaletteType::Formula(23, 28, 3));
let color_values: Vec<f64> = row_index.iter().map(|v| *v as f64).collect();
ax.set_title(
&format!("variable color boxerror, points, xyerrorbars, and boxxyerror.\nColor used is a SavedColormap"),
&[],
)
.set_y_range(Fix(-4.0), Fix(11.5))
.set_box_width(0.8, false)
.box_error_low_high(
&d1,
&d5,
&d2,
&d6,
&[
Color(SavedColorMap("magma", color_values.clone())),
FillAlpha(0.5),
BorderColor(RGBString("black")),
],
)
.points(
&d1,
iter::repeat(1),
&[
Color(SavedColorMap(
"hot",
color_values.iter().map(|v| 11.0 - *v).collect(),
)),
PointSymbol('D'),
],
)
.xy_error_bars(
&d1,
iter::repeat(8),
d1.iter().map(by3),
d1.iter().map(by4),
&[Color(SavedColorMap("ocean", color_values.clone()))],
)
.points(
&d1,
d2.iter().map(|v| -v / 2.0),
&[
Color(SavedColorMap("magma", color_values.clone())),
PointSymbol('O'),
PointSize(3.0),
],
)
.box_xy_error_delta(
&d1,
iter::repeat(10),
d1.iter().map(by3),
d1.iter().map(by4),
&[
Color(SavedColorMap("hot", color_values.clone())),
BorderColor(RGBString("black")),
],
);
c.show(&mut fg, "variable_palette");
}
fn main()
{
Common::new().map(|c| example(c));
}