Commit 534799ff authored by 张彦钊's avatar 张彦钊

add

parent 0522e469
......@@ -32,14 +32,23 @@ def name_short():
print(name_list[:10])
names = ["门诊部","医疗", "门诊", "研究所", "有限", "公司", "医学", "诊所", "中心","美容","医院","整形","外科",
"医美", "集团", "卫生", "机构", "专业","皮肤","管理",
"光学", "国际", "连锁", "综合", "专科","市","测试","测试1","ceshi","ceshi1","*"]
"光学", "国际", "连锁", "综合", "专科","市","*"]
location = ["街道", "社区",]
city_list = get_city_names()
city_list += ["香港","澳门","韩国"]
for word in ["市中心","丰台","科","东方"]:
if word in city_list:
city_list.remove(word)
stop_words = names + location
new_names = []
third_names = []
for name in name_list:
for test_word in ["测试","测试1","ceshi","ceshi1"]:
if test_word in name:
pass
else:
city_tag = "flag"
for city in city_list:
if city in name:
......@@ -66,7 +75,7 @@ def name_short():
df['core_name'] = third_names
print(df.head(6))
df.to_csv("/tmp/"+"name_22.csv",index=None)
df.to_csv("/tmp/"+"name_28.csv",index=None)
......
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