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
|
# GR Plot Overview
## Introduction
This program allows to create plots from the command line while using simple key-value pairs as arguments. The latter are converted into GRM containers which will then be used to plot the data. Alternatively a sender receiver mechanic can be used. For that start the grplot with the parameter `--listen <port>`. The executable will now display the elements the sender sends to it.
## Command line arguments
The following parameters are key-value pairs which can be used for every plot type.
- `file`: contains the data which should be displayed. If no file is referred this results in an error message. If this parameter is the first argument the `file` keyword may be omitted. More information about these files can be found under the subchapter `Data file`. A hyphen '-' in place of a file path normally means "read from standard input". Since 'grplot' does not read from standard input by default, use '-' to redirect the input. This way 'grplot' can be used in a pipe. Another option are `.xml`- or `.xml.png`-files, which can be used instead of a data file. These files contain the internal representation of a specific plot, which then can be restored during the start of 'grplot'. If using these files all given parameters are ignored.
- `kind`: defines the plot type that should be displayed. Possible options are: `barplot`, `contour`, `contourf`, `heatmap`, `hexbin`, `histogram`, `imshow`, `isosurface`, `line`, `marginal_heatmap`, `polar_heatmap`, `polar_histogram`, `polar_line`, `polar_scatter`, `pie`, `line3`, `scale`, `scatter`, `scatter3`, `shade`, `surface`, `stairs`, `stem`, `tricontour`, `trisurface`, `quiver`, `volume`, `wireframe`. The default plot type is `line`.
To get extra information about a specific plot type use:
```shell
--help plot_type
```
Alternatively `-h` can be used instead of `--help`.
The initial size of the window can be changed with following command at the beginning of the commandline arguments:
```shell
--size width,height
```
There are more parameters that can be used for all two-dimensional data sets:
- `keep_aspect_ratio` or `aspect`: defines whether the aspect ratio of the initial picture is kept or not. Possible values for this parameter are 0 or 1.
- `only_square_aspect_ratio`: defines whether the aspect ratio of data (x, y) is forced to be equal and kept this way or not. Notice this parameter will not work if the `keep_aspect_ratio` parameter has the value of 0. Possible values for this parameter are 0 or 1.
- `orientation`: This parameter defines the orientation of the displayed series. They can either be drawn `horizontal` or `vertical` while the default is `horizontal`.
For plots where multiple columns are read there is also a parameter that allows to select columns.
- `columns`: define the columns of the file which should be respected in the plot. The default is all columns. If all columns from x to y should be drawn use `x:y`. The `y` is necessary even if all lines from `x` to the end should be drawn. To select more than 1 specific column use the `,` without whitespace as separator.
For one-dimensional data sets there are also options to define if inside the data-file there are not just y- and maybe error-values included. These parameters are similar to the previous `column` parameter and can also be used in combination with it.
- `x_columns`: define the columns of the file which should represent the x-data. This is useful if multiple lines are included inside the plot where their y-values are not always on the same x-points. Another use case would be non-linear x-values which can not automatically generated by 'GR Plot'.
- `y_columns`: define the columns of the file which should represent the y-data. This parameter is only useful if either `x_columns` or `error_columns` is also used. Any column not included by those two is interpreted as y-values.
- `error_columns`: define the columns of the file which should represent the error-data. Depending on the status of the flag parameter `equal_up_and_down_error` this parameter must include either one or two columns for each y-column which should have error bars later. If this parameter is used and includes enough columns it is not needed to set `error` to enable the error bars. It can still be set to edit the resulting error bars. The default case will interpret the error-data as relative, while this can be changed to absolute with the parameter `error_type` and the value `absolute`.
- `xye_file`: defines a special case of the data-file. In this case the first column represents the x-, the second the y- and the third and maybe fourth column the error-values. The parameter can only have the values 0 and 1. If this parameter has the value 1 it is not needed to set `error` to enable the error bars. It can still be set to edit the resulting error bars.
There are more key-value parameters. These parameters only effect specific plot types. For example `bar_width` only makes sense, if bars are drawn. All possible parameters are:
`accelerate`, `algorithm`, `bar_color`, `bar_width`, `bin_counts`, `bin_edges`, `bottom`, `c`, `clip_negative`, `colormap`, `draw_edges`, `edge_color`, `edge_width`, `error_bar_style`, `error_columns`, `error_type`, `grplot`, `ignore_blank_lines`, `int_lim`, `isovalue`, `keep_radii_axes`, `kind`, `left`, `legend`, `legend_line`, `levels`, `line_spec`, `location`, `major_h`, `marginal_heatmap_kind`, `marker_type`, `num_bins`, `normalization`, `orientation`, `r_colormap`, `r_flip`, `r_lim`, `r_log`, `resample_method`, `right`, `rotation`, `scatter_z`, `stairs`, `step_where`, `style`, `theta_colormap`, `theta_flip`, `theta_data_lim`, `theta_lim`, `tilt`, `title`, `top`, `transformation`, `twin_x`, `twin_y`, `x_bins`, `x_columns` `x_flip`, `x_grid`, `x_label`, `x_lim`, `x_log`, `x_range`, `y_bins`, `y_columns`, `y_label`, `y_flip`, `y_grid`, `y_labels`, `y_lim`, `y_log`, `y_range`, `z_grid`, `z_label`, `z_lim`, `z_log`, `z_range`
All parameters are separated by a blank. Some parameters are more complex than others. These parameters represent a container inside GRM.
The valid container parameter is `error`.
The parameter container can contain one or more of the following parameters: `downwards_cap_color`, `error_bar_color`, `upwards_cap_color`.
Container parameters follow a different syntax than normal parameters. The parameters inside the container are enclosed by `{` `}`. If more than one parameter is given to the container each of the key-value pairs is enclosed by `{` `}` while the parameters are seperated by `,` without whitespace characters.
An example for some parameters on the command line:
```shell
file:covid19.csv kind:line columns:1:3,5
```
An example for using the stdin instead of the `file` keyword:
```shell
cat <data-file> | grplot -
```
This is an advanced example for a command line, where container parameters are set:
```shell
../../../../lib/grm/grplot/data/test.dat kind:barplot error:{error_bar_color:4}
```
If wanted the plot can be exported as a `pdf`, `png`, `jpeg` or `svg` file using the interactive menu. Alternatively these files can directly be created from console line if the environment variable `GKS_WSTYPE` is set.
## Test
The plots created from 'grplot' support in most cases interactions. These interactions can be used manually or via test cases. Further on these test cases allow to automatically test all the functionalities of 'grplot'. The biggest use case for these test cases is to verify if any made change inflicts any existing interaction.
To start 'grplot' with a test case you have to run:
```shell
grplot --test <command-file> <data-file> <parameter>
```
## Multiple plots
'grplot' also supports figures with multiple plots by using the --plot command line option. After this keyword the data-file must be named followed by the specific plot parameters if they should be applied to that plot. It's also possible to use interactions in each subplot.
To create multiple plots in one figure with 'grplot' use:
```shell
grplot --plot <data-file-1> <parameter-file-1> --plot <data-file-2> <parameter-file-2> ...
```
## Data file
These files contain the data that should be plotted. Besides the data these files can include parameters which modify the plot. Important to know is that the parameters which can stand in these files will always applied if possible unless they get overwritten by the commandline parameters. For the datafile all parameters from the commandline are valid except `file`. The parameters in the header file follow a slightly different format then those on the commandline. Thy start always with a `#` followed by the key-value pair which could include whitespaces in contrast to the commandline ones:
```text
# key : value
```
For example the start of the header could look like this:
```text
# title : This is an example
# x_label : x
# y_label : f(x)
# x_range : 2, 5
```
Values are seperated through commas (`,`), e.g. `3, 5`.
The next line after the header may contain the column labels which will be used to create a legend inside the plot. If not specified with `legend_line:1` grplot will check if the first entry of the line is not a number. Another option to specify the column labels would be a header entry like f.e.```#legend:<val>,<val>,,<val>```. Every entry is seperated through a `,`, which means no value after or between two `,` will skip the label for that specific column. Regardless of their position spaces will not be ignored. If there is a header entry like in the previous example grplot will treat the first line allways as a data line except `legend_line:1` is used. In that case the previous labels will be replaced.
Every other line in the file includes data values while blank lines can be ignored with `ignore_blank_lines:1`. Data items are separated with a tab character (`\t`). Depending on the plot type the data is interpreted differently. The following list shows how the data is treated for different plot types.
1. `contour`, `contourf`, `heatmap`, `imshow`, `marginal_heatmap`, `surface`, `wireframe`: The expected data is a matrix. Each element of the matrix is displayed according to its position inside the matrix. These elements are interpreted as values in x- and y-direction. With the parameter `use_bins:1` the first row and column of the data is interpreted as information about the `x_range` and `y_range`. If the x- or y-values are non-linear this can not be handled by the previous explained data-format. For that there is another format which allows to define the x-, y- and z-values. Each values will stand in a different column while the x- and y-values will loop so that all columns have the same amount of rows. The x-values has to change first. To use this option the parameter flag `xyz_file` with the value of `1` can be used.
2. `line`, `scatter`: One or more columns are expected here. Each column will be displayed in a single plot. The values inside the columns gets therefore interpreted as y-values. In combination with the `error` parameter every 2nd (and 3rd) column gets interpreted as error-values. More information are found by the `error` parameter itself. There is also another option which allows the user to define which columns include the x-, y- and error-values. For this the parameters `x_columns`, `y_columns` and `error_columns` can be used.
3. `isosurface`, `volume`: The expected data are multiple matrices. Each matrix represents a slice inside the volume.
4. `line3`, `scatter`, `scatter3`, `tricontour`, `trisurface`: Three columns with data are expected, representing the x-, y- and z-data.
5. `barplot`, `stem`, `stairs`: One or more columns are expected. Each column will be displayed in a single plot. The values inside the columns gets therefore interpreted as y-values. In combination with the `error` parameter the 2nd (and 3rd) column gets interpreted as error-values. More information are found by the `error` parameter itself. There is also another option which allows the user to define which column include the x-, y- and error-values. For this the parameters `x_columns`, `y_columns` and `error_columns` can be used.
6. `pie`: The expected data are 1-4 lines. The first line represents the data which should be displayed. The next 3 rows are used to set the RGB of the pie charts. Each row stands for one RGB element.
7. `polar_histogram`: One column is expected which represents the values.
8. `polar_line`, `polar_scatter`: The expected data are pairs of two columns containing the angles and values.
9. `polar_heatmap`: The expected data is a matrix. Each element of the matrix is displayed according to its position inside the matrix. These elements are interpreted as values in theta(x)- and radial(y)-direction. If not given, theta will be in range of 0.0 and 360.0 while r(radial) will be in the range of 0.0 and 3.0. Both parameters can be changed with `theta_range` for theta and `r_range` for r.
10. `quiver`: The expected data are two matrices. The first matrix contains the information about the x-directions and the second matrix the information about the y-directions.
11. `hexbin`, `shade`: The expected data are two columns, representing the x- and y-data.
12. `histogram`: One or more columns are expected. Each column will be displayed in a single plot. The values inside the columns gets therefore interpreted as x-values. In combination with the `error` parameter the 2nd (and 3rd) column gets interpreted as error-values. More information are found by the `error` parameter itself. There is also another option which allows the user to define which column include the x-, y(weights)- and error-values. For this the parameters `x_columns`, `y_columns` and `error_columns` can be used.
A plot type that expect the same data shape as other plot types can be converted using an interactive menu. The interaction also yields extra information about the plot, if the mouse is being hovered over them.
If some data from the data file should be plotted to a different axis as the rest of the data, this can be achieved with the following parameters: `bottom`, `left`, `right`, `top`, `twin_x`, `twin_y`. Each of these parameters defines an axis at the named position. The values of these keys specify a single or more series which will be plotted to that axis from key.
## Editor
The editor can be disabled by setting the environment variable `GRDISPLAY` to the value of `view`. If `GRDISPLAY` isn't set to `view`, the editor can be activated and deactivated via the interactive menubar. The editor allows to modify the displayed plot in parts. For that an element of the picture, whose attributes should be modified can be selected via double-click or by using the internal tree structure. There is also an even more advanced editor which can be enabled in the menu as well, which allows way more attribute changes. While using the editor some features of the view mode are disabled.
## Advanced information for each plot type
### BARPLOT
This plot type converts the data into a bar plot. A bar plot itself is used to display the relationship between a numeric and a categorical variable. The resulting bars represent the frequency or quantity of different categories of the data.
The expected data is one column representing the y-data.
Possible parameters for the bar plot are:
1. `bar_color`: This parameter defines the color of all bars inside the plot. The value of this parameter can either be an integer which represents a color index or three doubles which represent the RGB value of the color. If the parameter isn't set the bars will have the color with index 989 (dark blue).
2. `bar_width`: This parameter defines the width of all bars inside the plot. Depending on the specified width the bars may overlap. The value of this parameter is a double number where its default is 0.8.
3. `edge_color`: This parameter defines the color of all edges inside the plot. The value of this parameter can either be an integer which represents a color index or three doubles which represents the RGB value of the color. If the parameter isn't set the edges will have the color with index 1 (black).
4. `edge_width`: This parameter defines the width of all edges inside the plot. The value of this parameter is a double number where its default is 1.0.
5. `error`: With this parameter the relative error of each bar can be displayed. The values for this parameter are key-value pairs with the following keys:
- `error_bar_color`: Defines the color of the error bars as an integer. If no color is given an error is raised.
- `downwards_cap_color`: Defines the downwards cap color of the error bars as an integer.
- `upwards_cap_color`: Defines the upwards cap color of the error bars as an integer.
Note: If the error of the bars is to be displayed, the last two columns of the data are used for the error. If the up and down error are equal use `equal_up_and_down_error` with a value of `1`. In that case only one column is expected for the error data instead of the two. This parameter flag also does not need the `error` parameter to be set. Like by the `error` parameter some of the columns inside the data will get interpreted as error-values. The default case will interpret the error-data as relative, while this can be changed to absolute with the parameter `error_type` and the value `absolute`. The syntax of this parameter is:
`error:{{error_bar_color:`color_index`},{downwards_cap_color:`color_index`},{upwards_cap_color:`color_index`}}`
6. `error_bar_style`: Defines how the error-bars are displayed. As single error-lines(0) or as an error-area(1).
7. `style`: This parameter defines how the data inside the bar plot is displayed. There are three options:
- `default`: All values are displayed with a separate bar.
- `stacked`: The values are displayed with bars which are stacked over each other.
- `lined`: The values are displayed with smaller bars next to each other.
8. `y_labels`: This parameter allows the user to set labels to specific bars, which can for example display the value of the bar. The syntax of this parameter is `y_labels:{`label1`,`label2`,`...`}`.
### CONTOUR
This plot type converts the data into a contour plot. A contour plot displays the three-dimensional data over a rectangular mesh. Depending on the specified number of `levels` contour lines are displayed which represent the different height values.
The expected data is a matrix. Each element of the matrix is displayed according to its position inside the matrix. These elements are interpreted as values in x- and y-direction. With the parameter `use_bins:1` the first row and column of the data is interpreted as information about the `x_range` and `y_range`.
Possible parameters for the contour plot are:
1. `colormap` or `cmap`: This parameter defines the colormap to be used. The default is 44 (viridis).
2. `levels`: This parameter defines how many contour lines should be drawn. The default is 20.
3. `major_h`: This parameter defines if contour labels should be drawn or not. Any number greater 0 defines which lines will be labeled. An offset of 1000 to this parameter will color the lines aswell.
4. `x_flip`: This parameter defines whether the x-axis is flipped or not.
5. `y_flip`: This parameter defines whether the y-axis is flipped or not.
### CONTOURF
This plot type converts the data into a contourf plot. A contourf plot displays the three-dimensional data over a rectangular mesh. Depending on the specified number of `levels` contour lines are displayed which represent the different height values. The space between the contour lines is filled with a color respecting the specified colormap.
The expected data is a matrix. Each element of the matrix is displayed according to its position inside the matrix. These elements are interpreted as values in x- and y-direction. With the parameter `use_bins:1` the first row and column of the data is interpreted as information about the `x_range` and `y_range`.
Possible parameters for the contourf plot are:
1. `colormap` or `cmap`: This parameter defines the colormap to be used. The default is 44 (viridis).
2. `levels`: This parameter defines how many contour lines should be drawn. The default is 20.
3. `major_h`: This parameter defines if contour labels should be drawn or not. Any number greater 0 defines which lines will be labeled. An offset of 1000 to this parameter will color the lines aswell.
4. `scale`: This parameter sets the type of transformation to be used (refer to [gr_setscale](https://gr-framework.org/c-gr.html?highlight=gr_setscale#_CPPv411gr_setscalei)).
5. `x_flip`: This parameter defines whether the x-axis is flipped or not.
6. `y_flip`: This parameter defines whether the y-axis is flipped or not.
### HEATMAP
This plot type converts the data into a heatmap. A heatmap uses the current colormap to display the data. Each data point is represented with a colored square which size depends on the amount of data.
The expected data is a matrix. Each element of the matrix is displayed according to its position inside the matrix. These elements are interpreted as values in x- and y-direction. With the parameter `use_bins:1` the first row and column of the data is interpreted as information about the `x_range` and `y_range`.
Possible parameters for the heatmap are:
1. `colormap` or `cmap`: This parameter defines the colormap to be used. The default is 44 (viridis).
2. `levels`: This parameter defines how many contour lines should be drawn. The default is 20.
3. `x_flip`: This parameter defines whether the x-axis is flipped or not.
### HEXBIN
This plot type converts the data into a hexbin. A hexbin uses hexagonal binning and the current colormap to display the data.
Possible parameters for the hexbin are:
1. `colormap` or `cmap`: This parameter defines the colormap to be used. The default is 44 (viridis).
2. `num_bins`: This parameter defines the number of bins which represent a hexagonal cell in the plot. The default is 40.
3. `levels`: This parameter defines how many contour lines should be drawn. The default is 20.
4. `x_flip`: This parameter defines whether the x-axis is flipped or not.
### HISTOGRAM
This plot type converts the data into a histogram. A histogram is an approximate representation of the distribution of numerical data. Two columns are expected containing the x- and the y-data.
Possible parameters for the histogram are:
1. `bar_color`: This parameter defines the color of all bars inside the plot. The value of this parameter can either be an integer which represents a color index or three doubles which represents the RGB value of the color. If the parameter is omitted color 989 (dark blue) will be used.
2. `bins`: This parameter defines the number of bins which should be used to represent the distribution of the data. The default value is 3.3 * log10(number of points) + 0.5) + 1.
3. `edge_color`: This parameter defines the color of all edges inside the plot. The value of this parameter can either be an integer which represents a color index or three doubles which represents the RGB value of the color. If the parameter is omitted color 1 (black) will be used.
4. `error`: With this parameter the relative error of each bar can be displayed. The parameters are key-value pairs with the following keys:
- `error_bar_color`: Defines the color of the error bars. If no color is given an error is raised.
- `downwards_cap_color`: Defines the downwards cap color of the error bars.
- `upwards_cap_color`: Defines the upwards cap color of the error bars.
Note: If the error of the bars is to be displayed, the last two columns of the data are used for the error. If the up and down error are equal use `equal_up_and_down_error` with a value of `1`. In that case only one column is expected for the error data instead of the two. This parameter flag also does not need the `error` parameter to be set. Like by the `error` parameter some of the columns inside the data will get interpreted as error-values. The default case will interpret the error-data as relative, while this can be changed to absolute with the parameter `error_type` and the value `absolute`. The syntax of this parameter is:
`error:{{error_bar_color:`color_index`},{downwards_cap_color:`color_index`},{upwards_cap_color:`color_index`}}`
5. `error_bar_style`: Defines how the error-bars are displayed. As single error-lines(0) or as an error-area(1).
### IMSHOW
This plot type converts the data into an imshow plot. The data is displayed as a colored image where each data point is represented as a colored rectangle inside the image.
The expected data is a matrix. Each element of the matrix is displayed according to its position inside the matrix. These elements are interpreted as values in x- and y-direction. With the parameter `use_bins:1` the first row and column of the data is interpreted as information about the `x_range` and `y_range`.
Possible parameters for the imshow plot are:
1. `colormap` or `cmap`: This parameter defines the colormap to be used. The default is 44 (viridis).
2. `grplot`: This parameter is there for the consistency between the plot types `contour`, `contourf`, `heatmap`, `imshow`, `marginal_heatmap`, `surface`, `wireframe`. If set the data is displayed in the same order by all of these types where in general the imshow plot would be flipped. The value can be either 0 or 1 where the value if not otherwise set is always 1.
3. `x_flip`: This parameter defines whether the x-axis is flipped or not.
4. `y_flip`: This parameter defines whether the y-axis is flipped or not.
### ISOSURFACE
This plot type converts the data into an isosurface. An isosurface is a three-dimensional analog of a contour- or isoline.
The expected data are multiple matrices. Each matrix is similar to a slice inside the volume.
Possible parameters for the isosurface are:
1. `isovalue`: Values greater than the isovalue will be seen as outside the isosurface, while values less than the isovalue will be seen as inside the isosurface. The value has to an integer or double where the default is 0.5.
2. `rotation`: This parameter defines the rotation of the displayed data in degrees. The value of this parameter has to be an integer or double. The default is no rotation.
3. `tilt`: This parameter defines the tilt of the camera in degrees. The value of this parameter has to be an integer or double. The default is no tilt.
### LINE
This plot type converts the data into a line plot. A line plot is a simple plot where the data points are connected by a polyline.
The expected data are columns. Each column will be interpreted as a single line. Multiple columns leads to multiple displayed lines. The values inside the columns gets therefore interpreted as y-values.
Possible parameters for the line plot are:
1. `error`: With this parameter the relative error of each line can be displayed. The value of this parameter are key-value pairs with the following keys:
- `error_bar_color`: Defines the color of the error bars. The value of this parameter has to be an integer. If no color is given this leads to an error.
- `downwards_cap_color`: Defines the downwards cap color of the error bars. The value of this parameter has to be an integer.
- `upwards_cap_color`: Defines the upwards cap color of the error bars. The value of this parameter has to be an integer.
Note: If the error of the points is to be displayed, the last two columns of each pair of three columns from the data are used for the error. This means for a dataset with eight columns that columns 2, 3, 5, 6 are used for the error bars. If the up and down error are equal use `equal_up_and_down_error` with a value of `1`. In that case only one column is expected for the error data instead of the two. This parameter flag also does not need the `error` parameter to be set. Like by the `error` parameter some of the columns inside the data will get interpreted as error-values. The default case will interpret the error-data as relative, while this can be changed to absolute with the parameter `error_type` and the value `absolute`. The syntax of this parameter is:
`error:{{error_bar_color:`color_index`},{downwards_cap_color:`color_index`},{upwards_cap_color:`color_index`}}`
2. `error_bar_style`: Defines how the error-bars are displayed. As single error-lines(0) or as an error-area(1).
3. `int_limits_high`: This parameter defines the upper limits of all integrals.
The syntax for this parameter is:
`int_limits_high:`number_of_elements`,`elem_1`,`elem_2`,`...
4. `int_limits_low`: This parameter defines the lower limits of all integrals.
The syntax for this parameter is:
`int_limits_low:`number_of_elements`,`elem_1`,`elem_2`,`...
### MARGINAL_HEATMAP
This plot type converts the data into a marginal heatmap. A marginal heatmap is a combination of a heatmap and either stairs plots or histograms. With those extra plots some parts of the heatmap data are displayed in vertical and horizontal direction at the margins of the heatmap.
The expected data is a matrix. Each element of the matrix is displayed according to its position inside the matrix. These elements are interpreted as values in x- and y-direction. With the parameter `use_bins:1` the first row and column of the data is interpreted as information about the `x_range` and `y_range`.
Possible parameters for the marginal heatmap are:
1. `algorithm`: This parameter defines whether the data is summed up or if the maximum to be used for the side plots. Possible values are `max` and `sum` where the default is `sum`.
2. `colormap` or `cmap`: This parameter defines the colormap to be used. The default is 44 (viridis).
3. `marginal_heatmap_kind` or `h_kind`: This parameter defines what part of the data is displayed inside the side plots. Possible options are:
- `all`: If the kind is set to all, the side plots respect the complete data of the heatmap. This is the default case.
- `line`: If the kind is set to line, the side plots respect only a specific row/column of the data.
4. `x_flip`: This parameter defines whether the x-axis is flipped or not.
5. `y_flip`: This parameter defines whether the y-axis is flipped or not.
### POLAR_HEATMAP
This plot type converts the data into a polar heatmap. A polar heatmap is a heatmap in polar coordinates.
The expected data is a matrix. Each element of the matrix is displayed according to its position inside the matrix. These elements are interpreted as values in theta(x)- and radial(y)-direction. If not given, theta will be in range of 0.0 and 360.0 while r(radial) will be in the range of 0.0 and 3.0. Both parameters can be changed with `theta_range` and `r_range`.
Possible parameters for the polar heatmap are:
1. `colormap` or `cmap`: This parameter defines the colormap to be used. The default is 44 (viridis).
### POLAR_HISTOGRAM
This plot type converts the data into a polar histogram. A polar histogram corresponds to a histogram in polar coordinates.
The expected data is one column containing the values.
Possible parameters for the polar histogram are:
1. `bin_counts`: This parameter sets the amount of classes without binning.
2. `bin_edges`: This parameter sets the borders of the classes.
3. `bin_width`: This parameter sets the width of all the bins.
4. `draw_edges`: If a colormap is used this parameter decides whether the outer shape is drawn or not. The value can be either 0 or 1.
5. `keep_radii_axes`: This parameter only have an impact, if `y_lim` is set. In that case the ranges for the radii axes from `y_lim` get ignored while the polar histogram still gets affected by the `y_lim`.
6. `num_bins`: This parameter sets the number of classes which are respected during the binning.
7. `normalization`: This parameter sets the type of normalization for the polar histogram. The value can be `count`, `probability`, `countdensity`, `pdf`, `cumcount` or `cdf`.
8. `r_colormap`: This parameter sets the colormap for the r-direction.
9. `r_flip`: This parameter defines whether the r-axis is flipped or not.
10. `theta_colormap`: This parameter sets the colormap for the theta-direction.
11. `theta_flip`: This parameter decides whether the theta values are flipped or not. The value can be either 0 or 1.
12. `stairs`: If this parameter is set, only the outer shapes of the bins are drawn. The value can be either 0 or 1.
### POLAR_LINE
This plot type converts the data into a polar plot/line-plot. A polar plot displays a polyline in polar coordinates, with theta(x) indicating the angle in radians and r(y) indicating the radius value for each point.
The expected data are two columns containing the angles and values.
Possible parameters for the polar line plot are:
1. `clip_negative`: If this parameter is set, only positive radii are displayed, otherwise negative will be mirrored
### POLAR_SCATTER
This plot type converts the data into a polar scatter plot. A polar scatter displays each data point as a point inside the polar coordinate system, with theta(x) indicating the angle in radians and r(y) indicating the radius for each point.
The expected data are two columns containing the angles and values.
Possible parameters for the polar scatter plot are:
1. `clip_negative`: If this parameter is set, only positive radii are displayed, otherwise negative will be mirrored
### PIE
This plot type converts the data into a pie plot. A Pie Chart is a circular statistical plot that can display one series of data. The area of the chart is the total percentage of the given data. The area of slices of the pie represents the percentage of the parts of the data.
The expected data are 1-4 lines. The first line represents the data to be displayed. The next three rows are used to set the RGB values for the slices.
### LINE3
This plot type converts the data into a three-dimensional line plot. The data points inside the three-dimensional space are connected through polylines.
The expected data are three columns containing the x-, y- and z-data.
### SCATTER
This plot type converts the data into a scatter plot. A scatter plot displays each data point as a point inside the two-dimensional coordinate system.
The expected data are columns. Each column will be interpreted as a single plot. Multiple columns lead to multiple plots. The column values are interpreted as y-values. There is also a special case of the scatter plot where the size of the points can be given.
Possible parameters for the scatter plot are:
1. `error`: With this parameter the relative error of each line can be displayed. The value of this parameter are key-value pairs with the following keys:
- `error_bar_color`: Defines the color of the error bars. The value of this parameter has to be an integer. If no color is given this leads to an error.
- `downwards_cap_color`: Defines the downwards cap color of the error bars. The value of this parameter has to be an integer.
- `upwards_cap_color`: Defines the upwards cap color of the error bars. The value of this parameter has to be an integer.
Note: If the error of the points is to be displayed, the last two columns of the data are used for the error. If the up and down error are equal use `equal_up_and_down_error` with a value of `1`. In that case only one column is expected for the error data instead of the two. This parameter flag also does not need the `error` parameter to be set. Like by the `error` parameter some of the columns inside the data will get interpreted as error-values. The default case will interpret the error-data as relative, while this can be changed to absolute with the parameter `error_type` and the value `absolute`. The syntax of this parameter is:
`error:{{error_bar_color:`color_index`},{downwards_cap_color:`color_index`},{upwards_cap_color:`color_index`}}`
2. `error_bar_style`: Defines how the error-bars are displayed. As single error-lines(0) or as an error-area(1).
3. `marker_type`: This parameter defines the style of the visualized data points, where the effect belonging to the numbers is the same as for [gr_setmarkertype](https://gr-framework.org/c-gr.html?highlight=gr_setmarkertype#_CPPv416gr_setmarkertypei).
### SCATTER3
This plot type converts the data into a three-dimensional scatter plot. A three-dimensional scatter plot displays each data point as a point inside the three-dimensional coordinate system.
The expected data are three columns containing the x-, y- and z-data.
### SHADE
This plot type converts the data into a shade plot. With a shade plot a point or line based heatmap can be drawn from the data.
The expected data are two columns containing the x- and y-data.
Possible parameters for the shade plot are:
1. `transformation`: This parameter defines the transformation type used for color mapping. The value of this parameter has to be an integer where the default is 1. The effect belonging to the numbers is the same as for [gr_shadepoints](https://gr-framework.org/c-gr.html?highlight=gr_shadepoints#_CPPv414gr_shadepointsiPdPdiii).
2. `x_bins`: This parameter defines the bins in x-direction. The value of this parameter has to be an integer where the default is 100.
3. `y_bins` : This parameter defines the bins in y-direction. The value of this parameter has to be an integer where the default is 100.
### SURFACE
This plot type converts the data into a surface plot. A surface plot is to be compared with a visualization of a function of two variables inside the three-dimensional space.
The expected data is a matrix. Each element of the matrix is displayed according to its position inside the matrix. These elements are interpreted as values in x- and y-direction. With the parameter `use_bins:1` the first row and column of the data is interpreted as information about the `x_range` and `y_range`.
Possible parameters for the surface plot are:
1. `accelerate`: This parameter defines whether the surface plot is calculated with the GR or the GR3 functionalities. The value of this parameter has to be 0 or 1 where in its default case the GR3 to be used.
2. `colormap` or `cmap`: This parameter defines the colormap to be used. The default is 44 (viridis).
3. `x_flip`: This parameter defines whether the x-axis is flipped or not.
4. `y_flip`: This parameter defines whether the y-axis is flipped or not.
### STAIRS
This plot type converts the data into a stairs plot. A stairs plot is a piecewise constant function having only finitely many pieces.
The expected data is 1 column. This column represents the y-data.
Possible parameters for the stairs plot are:
1. `step_where`: This parameter defines the calculation of the steps. The possible values are `pre`, `post` and `mid` which is also the default case.
### STEM
This plot type converts the data into a stem plot. A stem plot draws lines perpendicular to a baseline at each location from the baseline to the data values.
The expected data is one column containing the y-data.
### TRICONTOUR
This plot type converts the data into a tricontour plot. A tricontour plot displays contour lines on an unstructured triangular grid.
The expected data are 3 columns. The first columns represents x-, the second y- and the last the z-data.
The possible parameters for the tricontour plot are:
1. `colormap` or `cmap`: This parameter defines the colormap to be used. The default is 44 (viridis).
2. `levels`: This parameter determines the number and positions of the contour lines/regions. The default is 20.
3. `x_flip`: This parameter defines whether the x-axis is flipped or not.
4. `y_flip`: This parameter defines whether the y-axis is flipped or not.
### TRISURFACE
This plot type converts the data into a trisurfaces. A trisurface is a type of surface plot, created by triangulation of compact surfaces of finite number of triangles which cover the whole surface in a manner that each and every point on the surface is in triangle.
The expected data are 3 columns. The first columns represents x-, the second y- and the last the z-data.
Possible parameters for the trisurface are:
1. `colormap` or `cmap`: This parameter defines the colormap to be used. The default is 44 (viridis).
2. `x_flip`: This parameter defines whether the x-axis is flipped or not.
3. `y_flip`: This parameter defines whether the y-axis is flipped or not.
### QUIVER
This plot type converts the data into a quiver plot. A quiver plot is a type of 2D plot that shows vector lines as arrows.
The expected data are 2 matrices. The first matrix contains the information of the x-directions and the second matrix the information of the y-directions.
Possible parameters for the quiver plot are:
1. `x_flip`: This parameter defines whether the x-axis is flipped or not.
2. `y_flip`: This parameter defines whether the y-axis is flipped or not.
### VOLUME
This plot type converts the data into a volume plot. A volume plot draws a three-dimensional data set using volume rendering. The volume data is reduced to a two-dimensional image using an emission or absorption model or by a maximum intensity projection. After the projection the current colormap is applied to the result.
The expected data are multiple matrices. Each matrix is similar to a slice inside the volume.
Possible parameters for the volume plot are:
1. `algorithm`: This parameter defines which model to be used for the reduction of the data. The possible values are `emission`, `absorption` and `mip` which is the same as `maximum`.
2. `x_flip`: This parameter defines whether the x-axis is flipped or not.
3. `y_flip`: This parameter defines whether the y-axis is flipped or not.
### WIREFRAME
This plot type converts the data into a wireframe plot. A wireframe plot takes a grid of values and projects it onto the specified three-dimensional surface. The surface itself has a grid structure.
The expected data is a matrix. Each element of the matrix is displayed according to its position inside the matrix. These elements are interpreted as values in x- and y-direction. With the parameter `use_bins:1` the first row and column of the data is interpreted as information about the `x_range` and `y_range`.
|