摘要: # 方法一:暴力法,对每个词进行判断 传统方法 def remove_stopwords1(text): words = text.split(' ') new_words = list() for word in words: if word not in stopwords: new_words.append(word) return new_words # 方法二:先构建停用词的映射 推荐方 阅读全文
posted @ 2019-08-28 17:00 cup_leo 阅读(343) 评论(0) 推荐(0) 编辑
摘要: 一行代码加快pandas计算速度 DASK https://blog.csdn.net/sinat_38682860/article/details/84844964 阅读全文
posted @ 2019-08-28 13:58 cup_leo 阅读(348) 评论(0) 推荐(0) 编辑