import numpy as np
import matplotlib.pyplot as plt

data = np.loadtxt('sample_18.xye')
plt.plot(data[:,0], data[:,1])
plt.show()