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

24번째 줄: 24번째 줄:


==같이 보기==
==같이 보기==
{{z컬럼3|
* [[R 행렬]]
* [[R 행렬]]
* [[R dim()]]
* [[R dim()]]
* [[R diag()]]
* [[R diag()]]
* [[R array()]]
* [[R colSums()]]
* [[R colSums()]]
* [[R rowSums()]]
* [[R rowSums()]]
* [[R is.matrix()]]
* [[R as.matrix()]]
* [{R data.matrix()]]
}}
==참고==
* https://www.rdocumentation.org/packages/base/versions/3.6.2/topics/matrix


[[분류: R 행렬]]
[[분류: R 행렬]]

2020년 4월 16일 (목) 00:31 판

1 개요

R matrix()
matrix( c(1,2,3,4,5,6), 2, 3)
matrix( c(1,2,3,4,5,6), 3, 2)
options(echo = TRUE)
A <- matrix( c(1,2,3,4,5,6), nrow=2, ncol=3)
class(A)
str(A)
A
options(echo = TRUE)
A <- matrix( c(1,2,3,4,5,6), nrow=2, ncol=3, byrow=TRUE)
class(A)
str(A)
A

2 같이 보기

3 참고

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