I would like to change the X axis labels on the plot below, so that 1 to 9 is written ten times instead of 1 to 90.
The best I could achieve is with this:
xticks = np.asarray([[*range(1,10)] for x in range(1,11)]).flatten()
However, this just stacks the numbers on top of eachother from 1 to 9, ten times.