公告板
版本库
filestore
活动
搜索
登录
main
/
P011
3d玻璃轮廓度检测
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
1.初始提交
Gavin
2021-02-04
4e5aaefc7162b700b95c750caeff35e6323631d3
[P011.git]
/
P011.2D.algorithm
/
2.1.ReadLine.py
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")