All,
I have a df that looks like this
lib1m markdate tag purpose currencyBench
0 -0.08900 2018-03-01 LIBOR REUTERS JPY
1 0.49663 2018-03-01 LIBOR REUTERS GBP
2 -0.59900 2018-03-01 STIBOR REUTERS SEK
3 -0.37100 2018-03-01 LIBOR ECON EUR
4 1.42000 2018-03-01 OBFR01 ECON5 USD
To access the number i am looking for i did this:
rates.loc[(rates['currencyBench']=='GBP') ,['lib1m']]
However, the output is
lib1m
1 0.49663
but what I am looking for is 0.49663
without column name and the index.
Any idea is more than welcome
Thanks