Friday, January 15, 2016

Plot XY

Berikut ini adalah contoh Plot sin.txt dengan python-matplotlib

sin.txt
0    0.0
30    0.5
60    0.9
90    1.0
120    0.9
150    0.5
180    0.0
210    -0.5
240    -0.9
270    -1.0
300    -0.9
330    -0.5
360    0.0


Dengan text editor seperti gedit copy code berikut lalu beri nama plotsin.py
#!/usr/bin/python
import numpy as np
import matplotlib.pyplot as plt
data = np.genfromtxt('sin.txt')
x = data[:,0]
y = data[:,1]
# now, plot the data:
plt.plot(x, y)
plt.show()



Pada directory tempat anda memiliki plotsin.py ubah mode:
chmod +x plotsin.py



Lalu run
./plotsin.py 



Maka anda akan memperoleh:

No comments: