Commit 4e8200a3 authored by 张彦钊's avatar 张彦钊

add

parent 91fe4ac4
......@@ -107,6 +107,8 @@ def hospital():
"expert_exposure_pv_30","service_ctr_30","hospital_ctr_30","expert_ctr_30","merchant_id"]
df = df.rename(columns=dict(zip(list(range(len(name))), name)))
print("df")
print(df.shape)
sql = "select merchant_id,doctor_discount_30_days," \
"service_pv_30,expert_pv_30,organization_pv_30,expand_rechange_amount_30 from statistic_merchant_rank_factor " \
......@@ -120,7 +122,8 @@ def hospital():
name = ["merchant_id", "doctor_discount_30_days","service_pv_30","mexpert_pv_30","organization_pv_30",
"expand_rechange_amount_30"]
tmp = tmp.rename(columns=dict(zip(list(range(len(name))), name)))
print(tmp.head(6))
print("tmp")
print(tmp.shape)
df["merchant_id"] = df["merchant_id"].astype("str")
tmp["merchant_id"] = tmp["merchant_id"].astype("str")
......
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