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.

13 KiB

None <html lang="en"> <head> </head>
In [9]:
# importing data
import pandas as pd
data = pd.read_csv('results-1.csv')
x = data['Length']
x
Out[9]:
0     57.313
1     52.632
2     43.922
3     44.448
4     60.245
5     60.305
6     67.839
7     60.819
8     71.989
9     71.939
10    74.911
11    76.080
12    61.988
13    67.846
14    72.517
Name: Length, dtype: float64
In [11]:
import matplotlib.pyplot as plt
plt.plot(x, '.k')
Out[11]:
[<matplotlib.lines.Line2D at 0x115566cf0>]
No description has been provided for this image
</html>