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

잔글 (봇: 자동으로 텍스트 교체 (-<source +<syntaxhighlight , -</source> +</syntaxhighlight>))
 
3번째 줄: 3번째 줄:
* 문자의 수를 세는 함수
* 문자의 수를 세는 함수


<source lang='r' notebook>
<syntaxhighlight lang='r' notebook>
nchar("hello")
nchar("hello")
</source>
</syntaxhighlight>
<source lang='r' notebook>
<syntaxhighlight lang='r' notebook>
nchar("")
nchar("")
</source>
</syntaxhighlight>
<source lang='r' notebook>
<syntaxhighlight lang='r' notebook>
x <- "hello world"
x <- "hello world"
nchar(x)
nchar(x)
</source>
</syntaxhighlight>
<source lang='r' notebook>
<syntaxhighlight 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)
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==

2021년 4월 14일 (수) 21:00 기준 최신판

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 }}