I am facing a challenge with plotting a graph on a logarithmic scale where I need to specify evenly distributed ticks. My initial approach was to use code that pushes tick values at intervals but this did not result in evenly spaced ticks on the log scale.
I require a set of numbers that are evenly distributed on the log scale. For instance, if my graph range is from 0.01 to 100, the desired output for evenly spaced ticks would be:
[0.01, 0.1, 1, 10, 100]
Your assistance is greatly appreciated. Thank you.