我有带有给定数据框的文本文档集:
Category Document
0 a 1
1 None 2
2 None 3
3 None 4
... ... ...
10 None 9
当前编码:
inputfile = open("file.txt", 'r')
corpus = [w for w in inputfile]
label = ['a']
corpus_df = {'Document': corpus, 'Category': label}
corpus_df = pd.DataFrame.from_dict(corpus_df, orient='index')
print corpus_df.transpose()
我的问题是如何使其他文档与D1具有相同的类别?