“Interface orientada ao objeto Matplotlib” Respostas de código

Interface orientada ao objeto Matplotlib

ax = plt.axes()
ax.plot(x, np.sin(x))
ax.set(xlim=(0, 10), ylim=(-2, 2),
       xlabel='x', ylabel='sin(x)',
       title='A Simple Plot');
Jealous Jaguar

Interface orientada ao objeto Matplotlib

plt.plot(x, np.sin(x), '-g', label='sin(x)')
plt.plot(x, np.cos(x), ':b', label='cos(x)')
plt.axis('equal')

plt.legend();
Jealous Jaguar

Respostas semelhantes a “Interface orientada ao objeto Matplotlib”

Perguntas semelhantes a “Interface orientada ao objeto Matplotlib”

Procure respostas de código populares por idioma

Procurar outros idiomas de código