hello im trying to plot a bar diagarm with matplotlib
everything is working except that the names of the X "points" are overlapping each other instead of having space between them every name is being writen on top of the next one
im new to matplotlib and would love to hear an explantion how to solve it so i can see the names in a clear way
adding a picture
as you can see in my code the path_names are the names that are overlapping
plt.bar(paths_names,list_of_videos_length)
plt.show()
how can i give enough space to any string of path_names so it wont overlap