import  matplotlib.pyplot as plt
import numpy as np

x,y = np.loadtxt('oscil_v1.dat', usecols=(0,1), unpack=True)
fig, ax = plt.subplots()
ax.plot(x,y)
ax.set_xlabel('time [a.u.]')
ax.set_ylabel('amplitude [a.u.]')
plt.show()
