美文网首页
【python】实现excel功能

【python】实现excel功能

作者: 我写的BUG代码少 | 来源:发表于2020-04-15 11:03 被阅读0次

    26.多条件筛选并分类汇总 来源

    import pandas as pddf = pd.read_excel(‘’)
    df['mark'] = df['seq_no'].map(lambda x: 'long' if len(str(x))>5 else 'short')
    res = df.groupby(['platform','name','account','mark'])['seq_no'].count()
    

    相关文章

      网友评论

          本文标题:【python】实现excel功能

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