I don't know why my plot looks like this:
I only want to display lines with no fill. Code below. Note this also happens if I run in Spyder or cmd.
import matplotlib.pyplot as plt
import seaborn as sns
df_ard= pd.read_csv(pathx, parse_dates=['Date'] )
plt.figure(figsize=(15,8))
sns.lineplot(x="Date", y='As',
hue="Location",
data=df_ard,
palette='bright')