martes, 12 de septiembre de 2017

Graficar en python Consola y pythonanywhere

En python consola de windows o mac

import matplotlib.pyplot as plt
import numpy as np

x = np.arange(0,10,0.1)
y = x*np.cos(x)

plt.plot(x,y)
plt.xlabel('x')
plt.ylabel('y')
plt.title('Lab DLS')
plt.show()




En pythonanywhere.com, se debe guardar en un archivo grafica.png

import matplotlib.pyplot as plt
import numpy as np

x = np.arange(0,10,0.1)
y = x*np.cos(x)

fig = plt.figure()

plt.plot(x,y)
plt.xlabel('x')
plt.ylabel('y')
plt.title('Lab DLS')
#plt.show()

fig.savefig("grafica.png")

No hay comentarios:

Publicar un comentario