Commit 18ee79e6 authored by 张彦钊's avatar 张彦钊

修改统计指标

parent 65dafb4e
...@@ -33,22 +33,10 @@ def ctr_all(): ...@@ -33,22 +33,10 @@ def ctr_all():
cursor.execute(sql_active) cursor.execute(sql_active)
result = cursor.fetchall() result = cursor.fetchall()
tail56 = pd.DataFrame(list(result))[0].values.tolist() tail56 = pd.DataFrame(list(result))[0].values.tolist()
start = "2018-09-05" cover = len(set(tail56) & set(device_id))
sql_all = "select distinct device_id from data_feed_click " \
"where stat_date >= '{}' and stat_date <= '{}' and cid_type = 'diary'".format(start,date)
cursor.execute(sql_all)
result_all = cursor.fetchall()
df = pd.DataFrame(list(result_all))
all_user = df[0].values.tolist()
print("老用户总数:")
print(len(all_user))
day_all = set(all_user) & set(tail56)
print("当天老用户总数:")
print(len(day_all))
cover = len(day_all & set(device_id))
print("当天尾号5或6活跃用户覆盖数:") print("当天尾号5或6活跃用户覆盖数:")
print(cover) print(cover)
cover_percent = format(cover / len(day_all),".3f") cover_percent = format(cover / len(tail56),".3f")
print("当天尾号5或6活跃用户覆盖率:") print("当天尾号5或6活跃用户覆盖率:")
print(cover_percent) print(cover_percent)
sql_click = "select count(cid) from data_feed_click " \ sql_click = "select count(cid) from data_feed_click " \
...@@ -64,7 +52,7 @@ def ctr_all(): ...@@ -64,7 +52,7 @@ def ctr_all():
exp = cursor.fetchone()[0] exp = cursor.fetchone()[0]
print("曝光数:" + str(exp)) print("曝光数:" + str(exp))
print("点击率:" + str(click / exp)) print("点击率:" + str(click / exp))
return len(day_all),cover,cover_percent,click,exp,format(click/exp,".6f") return len(tail56),cover,cover_percent,click,exp,format(click/exp,".6f")
def ctr(): def ctr():
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment