我将数据框中的第一列(“时间”)设置为索引。然后,我使用loc和iloc来选择我需要的三个特定列(x,y,z)。但是它也包含“时间”。如何从三个没有索引“时间”的特定列中获取值?在图片中,我只想要
-302.13
-303.13
-302.69
-303.03
-302.55
-302.60
-302.46
-302.59。
marker_thirteen = coda3.loc[[8.1, 11.7, 13.475, 14.855, 15.125, 17.465, 19.82, 22.5],['13:-.X', '13:-.Y', '13:-.Z']]
original_x = marker_thirteen.iloc[:, 0]
print (marker_thirteen)
print(original_x)
答案 0 :(得分:0)
确定尝试一下
original_x = marker_thirteen.drop(['13:-.Y', '13:-.Z'], axis=1)
print(list(original_x['13:-.X']))