I want to plot a scatter plot for specific day .How to plot scatter with only two columns [Saturday and Sunday]?
px.scatter(
df, x="total_bill", y="tip",
color="size", facet_col="day"
)
df.day.value_counts()
Sat 87
Sun 76
Thur 62
Fri 19
Name: day, dtype: int64
This is scatter plotted for all columns.
