plt.figure(dpi = 140)sns.kdeplot(churn_age, fill = True)sns.scatterplot( [mean], [0], color='red', label='mean')sns.scatterplot( [median], [0], color='green', label='median')sns.lineplot( stdev, [0,0], color='black', label='standard deviation')plt.xlabel("Age")plt.ylabel('Density')plt.ylim(-0.002, 0.025)plt.title("KDE Plot with descriptives : Age of people who churned")plt.show()This results in the error:
TypeError: scatterplot() takes from 0 to 1 positional arguments but 2 were giveni want to remove this error.