Ao escrever o código abaixo recebo o erro "Name "figure " is not defined " e ele não consegue plotar o gráfico que nem o da aula ( O labelx 'Metros' não aparece e as dimensões do gráfico ficam irregulares)
ax = sns.boxplot( x = 'Altura', data = dados, orient = 'h')
ax = figure.set_size_inches(12, 4)
ax.set_title('Altura', fontsize = 18)
ax.set_xlabel('Metros', fontsize=14)
ax
Já tentei trazer a versão antiga do seaborn pelo seguinte código :
!pip install seaborn=='0.7.0'
Mas recebi o erro :
ERROR: Could not find a version that satisfies the requirement seaborn=='0.7.0' (from versions: 0.1, 0.2.0, 0.2.1, 0.3, 0.3.1, 0.4.0, 0.5.0, 0.5.1, 0.6.0, 0.7.0, 0.7.1, 0.8, 0.8.1, 0.9.0, 0.9.1rc0, 0.9.1, 0.10.0rc0, 0.10.0, 0.10.1, 0.11.0rc0, 0.11.0, 0.11.1)
ERROR: No matching distribution found for seaborn=='0.7.0'