Compilador de Python Online (Editor / Interpretador)
Escreva, execute e compartilhe o seu código Python instantaneamente com o Compilador de Python Online da Asimov Academy.
import matplotlib.pyplot as plt
dados = [20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 60]
plt.boxplot(dados, whis=[10, 90])
plt.title('Boxplot de Dados Fictícios')
plt.ylabel('Valores')
plt.show()