Нет применимого метода для 'tm_map', примененного к объекту класса "персонаж"
Мои данные выглядят так:
1. Good quality, love the taste, the only ramen noodles we buy but they're available at the local Korean grocery store for a bit less so no need to buy on Amazon really.
2. Great flavor and taste. Prompt delivery.We will reorder this and other products from this manufacturer.
3. Doesn't taste good to me.
4. Most delicious ramen I have ever had. Spicy and tasty. Great price too.
5. I have this on my subscription, my family loves this version. The taste is great by itself or when we add the vegetables and.or meats.
6. The noodle is ok, but I had better ones.
7. some day's this is lunch and or dinner on second case
8. Really good ramen!
(skip)
Я организую эти данные (исключение чисел, преобразование строчных букв, удаление специальных символов)
Я хочу создать матрицу и график СНА.
Однако существует проблема с процессом очистки данных.
Error in UseMethod("tm_map", x) :
no applicable method for 'tm_map' applied to an object of class "character"
Что я должен делать?
docs<- readLines("C:/Users/xxx/Desktop/3694.txt", encoding = "UTF-8")
library(tm)
docs <- tm_map(docs,removePunctuation)
docs <- tm_map(docs, tolower)
docs <- tm_map(docs, PlainTextDocument)
DocsCopy <- docs
0 ответов
Чистый <- функция (х) {
х <-цветник (х)
x <-removeWords (x, стоп-слова ('en'))
x <-removePunctuation (x)
x <-stripWhitespace (x)
возврат (х) }