2
我從多個文件中刪除停用詞。首先,我讀取每個文件並從數據框中刪除停用詞。之後,我將數據幀與下一個數據幀連接起來。當我打印數據幀它給了我等的輸出:Python從熊貓數據框中刪除停用詞給出錯誤輸出
0 [I, , , , , r, e, , h, , h, , h, v, e, ...
1 [D, , u, , e, v, e, n, , e, , h, e, , u, ...
2 [R, g, h, , f, r, , h, e, , e, c, r, , w, ...
3 [A, f, e, r, , c, l, l, n, g, , n, , p, l, ...
4 [T, h, e, r, e, , v, e, r, e, e, n, , , n, ...
這裏是我的代碼:
allFiles = glob.glob(ROOT_DIR + '/' + DATASET + "/*.csv")
frame = pd.DataFrame()
list_ = []
stop = stopwords.words('english')
for file_ in allFiles:
chunkDataframe = pd.read_csv(file_,index_col=None, header=0, chunksize=1000)
dataframe = pd.concat(chunkDataframe, ignore_index=True)
dataframe['Text'] = dataframe['Text'].apply(lambda x: [item for item in x if item not in stop])
print dataframe
list_.append(dataframe)
frame = pd.concat(list_)
請幫我優化讀取與從它刪除停用詞多個文件的方式。
您能否提供[MCVE]? – IanS