美文网首页
python字段匹配

python字段匹配

作者: 正在充电Loading | 来源:发表于2017-08-27 23:37 被阅读0次

    import pandas

    items = pandas.read_csv(

    'D:\\PDA\\4.12\\data1.csv',

    sep='|',

    names=['id', 'comments', 'title']

    )

    prices = pandas.read_csv(

    'D:\\PDA\\4.12\\data2.csv',

    sep='|',

    names=['id', 'oldPrice', 'nowPrice']

    )

    #默认只是保留连接上的部分

    itemPrices = pandas.merge(

    items,

    prices,

    left_on='id',

    right_on='id'

    )

    #即使连接不上,也保留左边没连上的部分

    itemPrices = pandas.merge(

    items,

    prices,

    left_on='id',

    right_on='id',

    how='left'

    )

    #即使连接不上,也保留右边没连上的部分

    itemPrices = pandas.merge(

    items,

    prices,

    left_on='id',

    right_on='id',

    how='right'

    )

    #即使连接不上,也保留所有没连上的部分

    itemPrices = pandas.merge(

    items,

    prices,

    left_on='id',

    right_on='id',

    how='outer'

    )

    相关文章

      网友评论

          本文标题:python字段匹配

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