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

(새 문서: ==개요== ;R length() ;R언어 length() <source lang='r'> x <- c("apple","banana","orange") length(x) #[1] 3 </source> <source lang='r'> length(diag(4)) # = 16 (4 x 4) </source> =...)
 
9번째 줄: 9번째 줄:
</source>
</source>
<source lang='r'>
<source lang='r'>
length(diag(4)) # = 16 (4 x 4)
length(diag(4))
# 16
</source>
</source>



2019년 4월 5일 (금) 14:06 판

1 개요

R length()
R언어 length()
x <- c("apple","banana","orange")
length(x)
#[1] 3
length(diag(4))
# 16

2 같이 보기

3 참고

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