index_price=pd.DataFrame({index:get_price(code).close for index,code in indexs.items()}).dropna()是什么意思
时间: 2024-05-30 08:13:48 浏览: 97
这个代码行的作用是获取所选股票指数的收盘价,将其存入 pandas 的 DataFrame 中,并且删除空值。其中,`get_price(code).close` 是获取股票 `code` 当天的收盘价的函数,`indexs.items()` 是一个字典,包含所选股票指数的代码和对应的索引名称。最终通过列表推导式将数据存入 DataFrame,再通过 `dropna()` 方法删除其中的空值。
阅读全文