You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 KiB

None <html lang="en"> <head> </head>
In [3]:
import pandas as pd
data = pd.read_csv('example.csv')
x = data['Length']
x
Out[3]:
0     60.1290
1     52.4911
2     53.6475
3     52.5073
4     46.0789
5     57.7730
6     68.2315
7     68.2315
8     58.9383
9     57.1548
10    65.9820
11    56.5718
12    78.1363
Name: Length, dtype: float64
In [6]:
import matplotlib.pyplot as plt
plt.plot(x, 'ok')
plt.grid()
plt.show()
No description has been provided for this image
</html>