"R stopwords()"의 두 판 사이의 차이

14번째 줄: 14번째 줄:
<source lang='r' run>
<source lang='r' run>
library("tm")
library("tm")
stopwords("SMART")
head(stopwords("SMART"))
</source>
</source>
<source lang='r' run>
<source lang='r' run>
library("tm")
library("tm")
stopwords("german")
head(stopwords("german"))
</source>
</source>



2020년 2월 28일 (금) 01:54 판

1 개요

R stopwords()
Usage
stopwords(kind = "en")

2 예시

library("tm")
stopwords("en")
library("tm")
head(stopwords("SMART"))
library("tm")
head(stopwords("german"))

3 같이 보기

4 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}