에러: inherits(doc, "TextDocument") is not TRUE
CODEDRAGON ㆍDevelopment/Big Data, R, ...
반응형
에러메시지
에러: inherits(doc, "TextDocument") is not TRUE
> dtm<-DocumentTermMatrix(reuters) 에러: inherits(doc, "TextDocument") is not TRUE > |
해결방법
> reuters <- tm_map(reuters, PlainTextDocument) > dtm <- DocumentTermMatrix(reuters) > |
'Development > Big Data, R, ...' 카테고리의 다른 글
Error: $ operator is invalid for atomic vectors - 해결방법 (0) | 2018.03.06 |
---|---|
모형을 평가하는 지표 - 정분류율, 오분류율, 민감도, 특이도, 정확도, 재현율, F1지표, Fβ지표 (0) | 2018.03.05 |
금융공학 V: Introduction to financial Engineering with R (0) | 2018.03.05 |
오차 (Error) vs 잔차 (Residual) (0) | 2018.03.04 |
abline() (0) | 2018.03.03 |