With the following code, I can use seaborn's scatterplot to plot data with certain colors assigned to data values.
How can I set the amount of colors that get used in this example? (e.g. if I want to have only two colors used or more than the 6 shown in the example)
import seaborn as sns
import matplotlib.pyplot as plt
tips = sns.load_dataset('tips')
print("tips.columns=", tips.columns) # tips.columns= Index(['total_bill', 'tip', 'sex', 'smoker', 'day', 'time', 'size'], dtype='object')
sns.scatterplot(data=tips, x="total_bill", y="tip", hue="total_bill", )

