I have a list to draw. Is there a way to display parts of x-axis labels, for example x[0], x[10], ..., but keep the figure the same?
x[0], x[10], ...
x = [\'alice
If x-axis is crowded I suggest you an other solution: you can rotate x-values with plt.xticks(rotation=45)
plt.xticks(rotation=45)