Olá. Estou tentando criar um gráfico scatterplot, do seaborn e quando passo nos parametros, as variaveis "x" e "y", mostra uma mensagem de erro.
O código
x = amostra.Renda
y = amostra.Idade
ax = sns.scatterplot(x,y)
ax.figure.set_size_inches(10, 6)
ax.hlines(y = y.mean(), xmin = x.min(), xmax = x.max(), colors='black', linestyles='dashed')
ax.vlines(x = x.mean(), ymin = y.min(), ymax = y.max(), colors='black', linestyles='dashed')
A mensagem
*TypeError Traceback (most recent call last) in <cell line: 4>() 2 y = amostra.Idade 3 ----> 4 ax = sns.scatterplot(x,y) 5 ax.figure.setsizeinches(10, 6) 6 ax.hlines(y = y.mean(), xmin = x.min(), xmax = x.max(), colors='black', linestyles='dashed')
TypeError: scatterplot() takes from 0 to 1 positional arguments but 2 were given*