I'm plotting a few different graphs, and I don't want to have a legend since I don't need it.
ax.scatter(x, y, ..., label='')
The above works just fine for me, but it sends a UserWarning out. I know it's benign and doesn't actually affect the program at all, but I'd like to find a way to not have it.
I know you can suppress all warnings in python, but I just want to suppress this specific warning.
Oh and removing label=''
still makes the warning.
Thank in advance