热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

特征维中词矩阵

在处理数据的时候偶尔会遇到特征维如下情况:可以将other维中的以分号分隔的词转化为词向量的形式:importpandasaspdfromsklearn.feature_e

在处理数据的时候偶尔会遇到特征维如下情况:

可以将other维中的以分号分隔的词转化为词向量的形式:

import pandas as pd
from sklearn.feature_extraction.text import CountVectorizer

df = pd.read_csv("data.txt",index_col=0)
df['other'] = df['other'].apply(lambda x: ' '.join(x.split(';')))
cv = CountVectorizer()
other_list = cv.fit_transform(df['other'])
df1 = pd.DataFrame(other_list.toarray(), columns = cv.get_feature_names())
df = df.reset_index(drop = True)
df_tmp = df.drop('other', axis=1)
df_final = df_tmp.join(df1)

最终得到结果:

 


推荐阅读
author-avatar
大牛
大水牛
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有