1
resposta

Problemas com gráficos

Tive problemas na hora de gerar gráficos: um deles foi esse código assim.

ax = sns.distplot(dados['Renda'])
ax = figure.set_size_inches(12, 6)
ax

Aparece a seguinte mensagem com o gráfico em tamanho pequeno em baixo da mensagem:

/usr/local/lib/python3.6/dist-packages/seaborn/distributions.py:2557: FutureWarning: `distplot` is a deprecated function and will be removed in a future version. Please adapt your code to use either `displot` (a figure-level function with similar flexibility) or `histplot` (an axes-level function for histograms).
  warnings.warn(msg, FutureWarning)
---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)
<ipython-input-463-b3ddcddb0e0d> in <module>()
      1 ax = sns.distplot(dados['Renda'])
----> 2 ax = figure.set_size_inches(12, 6)
      3 ax

NameError: name 'figure' is not defined
1 resposta

Olá Camila,

O problema foi na hora de acertar o tamanho da figura. O comando correto fica nessa forma:

ax = sns.distplot(dados['Renda'])
ax.figure.set_size_inches(12, 6)
ax