I am running seaborn 0.13.2.
I am trying to make a scatterplot with only dots. When i try sns.scatterplot(end_of_year_2018) it shows all kind of weird symbols, from triangles to +,* etc. etc. (see picture below)
So I tried to make a scatterplot like this:
end_of_year_2018 = yf.download ([ "ABBN.SW", "ADEN.SW", "CFR.SW", "SGSN.SW", "HOLN.SW", "NESN.SW", "NOVN.SW", "ROG.SW", "SREN.SW", "SCMN.SW", "UHR.SW", "UBSG.SW", "ZURN.SW" ], start = '2018-12-28', end = '2018-12-29')['Adj Close']
sns.scatterplot(end_of_year_2018, marker='o')
but still all of these symbols are present.
Everything else works just fine.

I already tried updating me Seaborn: pip install --upgrade seaborn
I tried resetting seaborn: sns.set(rc=None)
The rest of the plot works just fine, what should I do?
pandas.DataFrame.melt, as shown in the answers to this question.python v3.12.0,pandas v2.2.1,matplotlib v3.8.1,seaborn v0.13.2.sns.relplot, which removes the need to separately set the figure size and legend position.Notes
start='2018-12-28', end='2018-12-29', then a bar chart, not a scatter plot, should be used.end_of_year_2018.head()end_of_year_2018_long.head()end_of_year_2018start='2018-12-28', end='2018-12-29', which is only one day of data.markers=['.']*len(end_of_year_2018.columns)can work.markers=Falseresults in a bug.