
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
ompany.balance_sheet 에서 Cash가 display 되지 않습니다. 그래서 에러가 납니다.
그런데 display된 Total Debt로 변경하였습니다. 에러가 나지 않습니다.


company.balance_sheet.loc[['Cash']]
KeyError Traceback (most recent call last)
<ipython-input-13-86342a364f37> in <module>
----> 1 company.balance_sheet.loc[['Cash']]
4 frames
/usr/local/lib/python3.8/dist-packages/pandas/core/indexing.py in _validate_read_indexer(self, key, indexer, axis)
1372 if use_interval_msg:
1373 key = list(key)
-> 1374 raise KeyError(f"None of [{key}] are in the [{axis_name}]")
1375
1376 not_found = list(ensure_index(key)[missing_mask.nonzero()[0]].unique())
KeyError: "None of [Index(['Cash'], dtype='object')] are in the [index]"

