79519016

Date: 2025-03-19 03:00:52
Score: 1.5
Natty:
Report link

plt.xticks() may not work because it is linked to the values thus resulting in uneven spaces between ticks. Try changing the labels instead:

ax = plt.subplot()
ax.set_xticks(range(17), labels=[i for i in range(25) if i % 3 != 2])

Here is a sample output based on this example:

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Man made of meat