Oi pessoal,
Estou tendo um problema ao tentar colorir o gráfico do seaborn com hue
e palette
. Já vi que existem tópicos sobre isso aqui, mas as respostas não me ajudaram a corrigir esse erro.
Minha célula está assim:
import seaborn as sns
sns.set(rc={'figure.figsize': (13, 13)})
sns.scatterplot(x=visualizacao[:, 0],
y=visualizacao[:, 1],
hue=modelo.labels_,
palette=sns.color_palette('Set1', 3))
O erro é este:
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-18-4d459e75617d> in <module>()
6 y=visualizacao[:, 1],
7 hue=modelo.labels_,
----> 8 palette=sns.color_palette('Set1', 3))
6 frames
/usr/local/lib/python3.6/dist-packages/pandas/core/internals/construction.py in extract_index(data)
363 lengths = list(set(raw_lengths))
364 if len(lengths) > 1:
--> 365 raise ValueError("arrays must all be same length")
366
367 if have_dicts:
ValueError: arrays must all be same length