具有带有分层列名称的DataFrame:
carrier axcom bxcom
symbol ETX/BTX BTX/USD
xclass bvol close bvol close
series
2019-07-26 07:07:00 125902.416 0.022065 504.693509 9725.254
2019-07-26 07:08:00 125902.416 0.022065 503.913414 9703.396
2019-07-26 07:09:00 125902.416 0.022065 503.913414 9703.396
2019-07-26 07:10:00 125890.797 0.022083 504.429986 9722.059
这可以得到一列:
df[('bxcom','BTX/USD','close')]
如何获取所有包含“关闭”键的列? 像这样:
df[('*','*','close')]