In [7]:
import matplotlib.pyplot as plt
import scipy as sp
In [9]:
x = sp.genfromtxt('CurvaGiro/pos.dat')
In [55]:
a = plt.plot(x[:,2], x[:,1])
plt.grid(True, 'both', color = 'g', linestyle = '--', linewidth = 1, markersize = 5)
plt.show(a)
In [51]:
plt.grid?
In [ ]: