python pandas 实现SQl的count(*),count(distinct **)

本文介绍了一个简单的Python脚本,用于从指定文件中读取数据并计算每台主机的页面浏览量(PV)和独立访客数(UV),最终将结果输出到目标文件。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

实现也非常简单,不过多啰嗦,见代码注释:

pv uv 代指 select host,count(*),count(distinct ad) from table group by ;

# -*- coding:utf-8 -*-
import pandas as pd
from datetime import datetime

def Main():

    print("开始。。。。。")
    print(datetime.now().strftime('%Y-%m-%d %H:%M:%S'))

    source_txt = "/sh/yanjie/fudan/bigdata/bigdata_click_result.txt"
    target_txt = "/sh/yanjie/fudan/bigdata/host_pvuv_click.txt"

    uname = ['ad','type','host','url','ref','time','os','os_type']

    # count(*)
    pv = pd.read_csv(source_txt,sep="\t",header=None,names=uname,index_col=False)[['host','ad']].groupby('host')['ad'].size()

    # count(distinct **)
    uv = pd.read_csv(source_txt,sep="\t",header=None,names=uname,index_col=False)[['host','ad']].groupby('host').agg({'ad': pd.Series.nunique})

    # 去除索引,带出分组的字段
    result = pd.merge(pv.reset_index(),uv.reset_index(),how='inner',on='host')

    result.to_csv  (target_txt,header=None,index=False,sep="\t")

    print("完成。。。。。")
    print(datetime.now().strftime('%Y-%m-%d %H:%M:%S'))

if __name__ == "__main__":
    Main()

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值