Solucionado (ver solução)
Solucionado
(ver solução)
3
respostas

Eu copiei o código e colei, ao executar no meu deu esse seguinte erro

FutureWarning: Using a non-tuple sequence for multidimensional indexing is deprecated; use arr[tuple(seq)] instead of arr[seq]. In the future this will be interpreted as an array index, arr[np.array(seq)], which will result either in an error or a different result. return np.add.reduce(sorted[indexer] * weights, axis=axis) / sumval

3 respostas

Olá Eduardo,

Nesse caso é apenas um aviso (Warning), pois pretendem modificar o funcionamento dessa função em versões futuras.

Assim o código ainda deve executar normal, mesmo com essa mensagem aparecendo.

Pois é, mas depois do warning não acontece mais nada.

Warning: QT_DEVICE_PIXEL_RATIO is deprecated. Instead use: QT_AUTO_SCREEN_SCALE_FACTOR to enable platform plugin controlled per-screen factors. QT_SCREEN_SCALE_FACTORS to set per-screen factors. QT_SCALE_FACTOR to set the application global scale factor.

C:\Users\roger\AppData\Local\Continuum\anaconda3\lib\site-packages\scipy\stats\stats.py:1713: FutureWarning: Using a non-tuple sequence for multidimensional indexing is deprecated; use arr[tuple(seq)] instead of arr[seq]. In the future this will be interpreted as an array index, `a return np.add.reduce(sorted[indexer] * weights, axis=axis) / sumval

Acho que identifiquei,

plt.figure(figsize=(10,10))

sns.violinplot(x = "exames", y = "valores", hue = "diagnostico", data = dados_plot, split = True)

plt.xticks(rotation = 90)

Eu estou utilizando o vscode e o terminal do anaconda. Como eu ploto na minha tela o gráfico?

solução!

Consegui, plt.show()