I want to shift my plot to the right by fixed value , I have npy file contain 7 columns, I plot the histogram for the column number 7 as below:
plt.figure()
plt.hist(x[7],bins=800,color='y',histtype='step',linewidth=2,stacked=True)
plt.show()
I am trying to shift my plot to the right with fix value but I could not find a correct way to do so. Any help I really appreciate it.