Commit 094cc51d authored by 赵威's avatar 赵威

add printer

parent 86c95811
......@@ -28,6 +28,7 @@ def make_dict_from_pair(x):
# [('点击内容卡片', {'假体隆胸': 1.9067764699346477}), ('点击内容卡片', {'植发': 1.9067764699346477, '植发际线': 1})]
# {'搜索操作': {'手术': 43.8116976521965, '齿科治疗': 26.63919566939707}, '主动咨询': {'消脂': 12.612304719468522}}
def merge_results_by_event(lst):
tmp = {}
for i in lst:
......@@ -71,9 +72,11 @@ def update_tag3_user_portrait_by_event(cl_id):
user_df["second_positions"] = list(zip(user_df["event_cn"], user_df["second_positions_dict"]))
user_df["projects"] = list(zip(user_df["event_cn"], user_df["projects_dict"]))
first_solutions_list = user_df["first_solutions"].tolist()
first_solutions_lst = user_df["first_solutions"].tolist()
res = merge_results_by_event(first_solutions_list)
print(first_solutions_lst)
res = merge_results_by_event(first_solutions_lst)
print(res)
return cl_id
......
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