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

6번째 줄: 6번째 줄:
stopwords(kind = "en")
stopwords(kind = "en")
</source>
</source>
{{소스헤더|예시}}
 
==예시==
<source lang='r' run>
<source lang='r' run>
library("en")
stopwords("en")
stopwords("en")
##  [1] "i"          "me"        "my"        "myself"    "we"        "our"        "ours"      "ourselves"  "you"        "your"     
## [11] "yours"      "yourself"  "yourselves" "he"        "him"        "his"        "himself"    "she"        "her"        "hers"     
## [21] "herself"    "it"        "its"        "itself"    "they"      "them"      "their"      "theirs"    "themselves" "what"     
## ...
## [151] "when"      "where"      "why"        "how"        "all"        "any"        "both"      "each"      "few"        "more"     
## [161] "most"      "other"      "some"      "such"      "no"        "nor"        "not"        "only"      "own"        "same"     
## [171] "so"        "than"      "too"        "very"     
</source>
</source>
<source lang='r' run>
<source lang='r' run>
library("en")
stopwords("SMART")
stopwords("SMART")
</source>
</source>
<source lang='r' run>
<source lang='r' run>
library("en")
stopwords("german")
stopwords("german")
</source>
</source>

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

1 개요

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

2 예시

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

3 같이 보기

4 참고

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