GMLC-TDC / helics_benchmark_results

Repo containing helics_benchmark results and processing code
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

Log scale using only integer values #10

Open trevorhardy opened 4 years ago

trevorhardy commented 4 years ago

Some of the graphs with log scales end up using scales not based on powers of 10 and resulting in non-integer tick marks which are a bit harder to parse on a log scale (see attached graph). We need to find a way to force the x-axis, when logarithmic, to stick to powers of 10 and integer tick marks. Zu60n_aUZF6_echoMessage_singleCoreCore

trevorhardy commented 4 years ago

Relatedly, the following definition for xticks works for Corinne but not for Trevor:

xticks=list(range(0, (int(float(filter_df.federate_count.max()))+1), 4))

trevorhardy commented 4 years ago

The above problem related to xticks is now being reproduced by Corinne.