我正在使用python中的pandas通过iloc在CSV文件中定位某些数据。它不仅返回我想要的数据,而且还返回我不需要的数据值(行号和列名)。
[我的Csv文件为:] [1]: https://i.stack.imgur.com/EsdoG.jpg
我的代码是:
import pandas as pd
ctr_x = []
ctr_y =[]
obj = 'red_hat'
df = pd.read_csv('ring_1_05_sam.csv',)
ctr_x = df.iloc[10:12, 0:1 ]
ctr_y = df.iloc[10:12, 1:2]
print(ctr_x)
print(ctr_y)
我得到的输出是:
version
10 1536.25
11 1536.50
3
10 895.25
11 896.00
所以我也得到了行号和列名以及所需的结果。知道我如何摆脱这些行号和列名吗?