字典变成Dataframe,列表变成Dataframe的方式
将字典形式的res改成Dataframe格式
a=cluster.labels_.tolist() res = Counter(a) c= pd.Dataframe(res.items(), columns=['Topic', 'counts'])
将列表a转化成Dataframe格式
docs_df = pd.Dataframe(a, columns=["Doc"])
欢迎分享,转载请注明来源:内存溢出
字典变成Dataframe,列表变成Dataframe的方式
将字典形式的res改成Dataframe格式
a=cluster.labels_.tolist() res = Counter(a) c= pd.Dataframe(res.items(), columns=['Topic', 'counts'])
将列表a转化成Dataframe格式
docs_df = pd.Dataframe(a, columns=["Doc"])
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)