>>> pd.DataFrame(get_pe(symbol, start_time, end_time), columns=['time', 'pe'])
Empty DataFrame
Columns: [time, pe]
Index: []
>>> pd.DataFrame(get_pe(symbol, start_time, end_time), columns=['time', 'pe']).set_index('time', inplace=True)
None
有没有办法使用set index而不是None
来获取空DataFrame?
答案 0 :(得分:1)
由于None
,您获得了inplace=True
,而不是因为空的DataFrame:
In [46]: pd.DataFrame(columns=["a", "b"]).set_index("a", inplace=True)
In [47]: pd.DataFrame(columns=["a", "b"]).set_index("a")
Out[47]:
Empty DataFrame
Columns: [b]
Index: []