-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.ini
51 lines (46 loc) · 1.09 KB
/
config.ini
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
[APP]
output_dir = output
output_filename = plots
[PLOTTER]
output_format = pdf
output_filename = plots
export_engine = kaleido
height = 1080
width = 2560
graph_div_height = 90vh
is_xlabel_date = True
; Format: DD-MM-YYYY
day_zero = 01-01-2020
; Choose from https://plotly.com/python/templates/
theme = plotly
desired_tick_labels = 10
[HISTOGRAM2D]
title = Histogram2D
x_title = Time
y_title = Value
colorbar_title = Count
colorbar_titleside = top
; Available histfuncs: ("count", "sum", "avg", "min", "max")
histfunc = count
colorscale = plasma
; Scatter plot mode: ("lines+markers", "lines", "markers")
scatter_mode = lines
scatter_color = rgb(0, 255, 0)
scatter_name = Empirical Data
[BOXPLOTOVERTIME]
title = Boxplot over time
x_title = Time
y_title = Value
scatter_mode = markers
showlegend = False
boxpoints = False
scatter_color = rgb(255, 0, 0)
plot_fences = True
scatter_name = Empirical Data
[HISTOGRAM]
x_title = Count
y_title = Value
; Choose from (“solid”, “dot”, “dash”, “longdash”, “dashdot”, or “longdashdot”)
line_dash = solid
line_color = rgb(255, 0, 0)
line_width = 3