Boa tarde,
Fui tentar realizar o primeiro gráfico da aula, porém há um erro que não consegui resolver em relação ao seaborn:
ax = sns.distplot(dados['Renda'])
ax.figure_set_size_inches(12,6)
ax
/usr/local/lib/python3.7/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)
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-78-cc003aa93625> in <module>()
1 ax = sns.distplot(dados['Renda'])
----> 2 ax.figure_set_size_inches(12,6)
3 ax
AttributeError: 'AxesSubplot' object has no attribute 'figure_set_size_inches'
Pode ser devido a versão do seaborn que estou utilizando?