I'm plotting horizontal lines using the following
K = 85
space = K
plt.hlines(y=np.arange(0,K*space,space), xmin=0, xmax=torch.randn(K))
It gives the plot
While; the argument space
location the y-axis; but each line is so close with its neighbor and its very hard to put y-axis labels for each of the horizontal line
I'm more interested in increase the space (distance) between each line so that y-axis labels can be better visualized. Any help ? Thanks