The scatterplot from seaborn produces dots with a small white boarder. This is helful if there are a few ovelapping dots, but it becomes really impractical once there are many overlaying dots. How can the white borders be removed?
import seaborn as sns; sns.set()
import matplotlib.pyplot as plt
tips = sns.load_dataset("tips")
ax = sns.scatterplot(x="total_bill", y="tip", data=tips)

