I want to get the position of some data.
partial_coe[0] is my data's variable's name.
I want to get a data like this, using index and columns:
partial_coe[0].iloc['(600000.SH, 600015.SH)']['600000.SH']
But the error is below:
TypeError: cannot do positional indexing on <class 'pandas.core.indexes.base.Index'> with these indexers [(600000.SH, 600015.SH)] of <class 'str'>
How to get this data using the index and columns?