Dear Expert,
I have the above error when I try to print a specific row's name.
print('check2', pipeline_data['combined_data'].iloc[0])
>> False
print('check4', pipeline_data['combined_data'].index)
>> ('check4', Index([ Equity(2 [ARNC]), Equity(24 [AAPL]), Equity(41 [ARCB]),
Equity(52 [ABM]), Equity(62 [ABT]), Equity(64 [ABX]),
Equity(67 [ADSK]), Equity(76 [TAP]), Equity(88 [ACI]),
Equity(110 [RAMP]),
...
Equity(39073 [CIE]), Equity(39079 [KRA]), Equity(39111 [PPC]),
Equity(39160 [SYA]), Equity(39171 [MSGN]), Equity(39202 [SLRC]),
Equity(39204 [PDM]), Equity(39347 [ST]), Equity(39434 [PRI]),
Equity(39495 [SDRL])],
dtype='object', length=1811))
print('check5', pipeline_data['combined_data'].loc[' Equity(2 [ARNC])'])
>>KeyError: 'the label [ Equity(2 [ARNC])] is not in the [index]'
Also, print function seem to be able to print a subset on the IDE screen. Is it possible to print the all the values out?
Thanks for your help
C