Commit cb4fd4af authored by 张彦钊's avatar 张彦钊

multi hot insert database

parent 2ff68205
......@@ -54,10 +54,12 @@ def get_data():
for i in features:
df[i] = df[i].astype("str")
df[i] = df[i].fillna("lost")
# 下面这行代码是为了区分不同的列中有相同的值
df[i] = df[i] + i
unique_values.extend(list(df[i].unique()))
df["l2"] = df["l2"].astype("str")
df["l2"] = df["l2"].fillna("lost")
# l1和l2中的值允许相同
df["l2"] = df["l2"]+"l1"
unique_values.extend(list(df["l2"].unique()))
......
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