import matplotlib.pyplot as plt
plt.style.use('ff.mplstyle')

t = [1, 2, 3, 4, 5] 
x = [0.2415, 0.276, 0.3335, 0.414, 0.5175]

plt.scatter(t, x)
plt.xlabel("t, c")
plt.ylabel("x, м")
plt.savefig("example_1_simple.pdf")
