How to set equal bandwidth between xticks in matplotlib.
I am plotting graph and for x value ticks and i want my bin to be exact as related to my values.
my xticks are = [0.001,0.01,0.1,1,10,100]
sns.set_style("whitegrid")
plt.plot(tuned_parameter,accuracy_list)
plt.xlabel("Hyperparameter")
plt.ylabel("accuracy")
plt.xticks(tuned_parameter)
plt.title("Plot for accuracy with different hyperparameter")