Gavin
2021-02-04 4e5aaefc7162b700b95c750caeff35e6323631d3
1
2
3
4
5
6
7
8
import pandas as pd
import matplotlib.pyplot as plt
 
data = pd.read_csv("C:\\Users\\Gavin\\Desktop\\profile\\Profile\\Profile\\Trans.csv")
data9 = data[(data["1"]>89920) & (data["1"]<90010)]
data9.plot(x="0",y="2",kind="scatter")
plt.show()
data9.to_csv("D:\\Trans90000.csv")