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

3번째 줄: 3번째 줄:
* 문자의 수를 세는 함수
* 문자의 수를 세는 함수


<source lang='r' run>
<source lang='r' notebook>
nchar("hello")
nchar("hello")
</source>
</source>
<source lang='r' run>
<source lang='r' notebook>
nchar("")
nchar("")
</source>
</source>
<source lang='r' run>
<source lang='r' notebook>
x <- "hello world"
x <- "hello world"
options(echo=T)
nchar(x)
nchar(x)
cat( nchar(x) )
</source>
</source>
<source lang='r' run>
<source lang='r' notebook>
x <- c("asfef", "qwerty", "yuiop[", "b", "stuff.blah.yech")
x <- c("asfef", "qwerty", "yuiop[", "b", "stuff.blah.yech")
nchar(x)
nchar(x)

2021년 4월 14일 (수) 20:48 판

1 개요

R nchar()
  • 문자의 수를 세는 함수
nchar("hello")
nchar("")
x <- "hello world"
nchar(x)
x <- c("asfef", "qwerty", "yuiop[", "b", "stuff.blah.yech")
nchar(x)

2 같이 보기

3 참고

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