With data where it's important that the decimal places are shown (eg thousandths of a second when showing world records of running 100m), how do I show the decimal places on the bar graphs? (and axes?)
If it's not already part of the main system then I'm happy to change the core python code if pointed to the right place.
I tried using set_decimals(decimals) using the documentation but couldn't get it to work so if this is the part to use, please would you mind posting example code?
Thank you, Peter
I'm answering my own question but I looked into the code found that you can add the last part to the SJV code to change the decimal points on a bar graph: bar_chart = BarRace.bar_race(df=df, canvas=canvas.canvas, record=True, output_video=output_path, colors=colors, width=800, height=900, x_pos=200, y_pos=150, shift=200, unit=" m", number_of_bars=10, font_scale=1, decimal_places=3)