1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-30 00:00:11 +01:00

Script is now able to plot 3d graphes. Still needs documentation and a major cleanup.

This commit is contained in:
Dennis Potter 2018-10-18 16:33:45 +02:00
parent e5144575dd
commit c91487eb25
2 changed files with 643 additions and 225 deletions

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,65 @@
{
"3d_plot": {
"enabled": true,
"ticks": {
"x": [100, 1000, 10000, 25000, 50000],
"y": [1, 2, 4, 8, 16, 32, 64],
"z": [0, 1, 2, 3, 4, 5, 6, 7]
},
"axis_labels": {
"x": "rate",
"y": "number of values in sample",
"z": "$\\tilde{t}_{lat}$ [µs]"
},
"dimensions": {
"legend": [3.0, 0.3]
},
"legend_columns": 3
},
"median_plot": {
"export_figures": true,
"labels": [
"RC",
"UC",
"UD"
],
"axis_labels": {
"x": "number of values in sample",
"y": "$\\tilde{t}_{lat}$ [µs]"
},
"ticks": {
"x": [1, 2, 4, 8, 16, 32, 64],
"y": [0, 1, 2, 3, 4, 5, 6]
},
"colors": [
"#000000",
"#00549f",
"#8ebae5"
],
"dimensions": {
"legend": [2.0, 0.3]
},
"legend_columns": 3
},
"histograms": {
"export_figures": true,
"labels": [
"$\\mathtt{t_{lat} = t_{recv}-t_{generation}}$"
],
"axis_labels": {
"x": "$t_{lat}$ [µs]",
"y": "frequency"
},
"dimensions": {
"legend": [1.70, 0.3]
},
"legend_columns": 1
}
}