12 lines
278 B
Python
12 lines
278 B
Python
import matplotlib.pyplot as plt
|
|
|
|
y = [0, 160, 260, 360, 460, 560, 660, 860, 1060, 1560, 2060]
|
|
x = [0, 74602, 105503, 131459, 153512, 172041, 193794, 218947, 240580, 295118, 332346]
|
|
|
|
plt.plot(x, y)
|
|
plt.title("Simple Line Plot")
|
|
plt.xlabel("g")
|
|
plt.ylabel("raw data")
|
|
|
|
plt.show()
|