美文网首页我爱编程
pandas多重索引(MultiIndex)

pandas多重索引(MultiIndex)

作者: 小牛八卦 | 来源:发表于2016-09-12 10:33 被阅读0次

    建立多重索引并引用。

    index=pd.MultiIndex.from_product([df_code['id_stock'],df_date['date_trade']])
    
    df_vol=pd.DataFrame(index=index,columns=['vol'])

    相关文章

      网友评论

        本文标题:pandas多重索引(MultiIndex)

        本文链接:https://www.haomeiwen.com/subject/fvlpettx.html