R 函数学习 - layout()

2020-06-06  本文已影响0人  Thinkando
      [,1] [,2] [,3]
[1,]   1   0   0
[2,]   2   2   0
[3,]   3   3   3

把这个矩阵传入layout函数,我们就能得到这样的output device


image.png
layout(matrix(1:6,3,2)) #将当前装置分割为3行2列的布局
    [,1] [,2]

[1,]   1   4

[2,]   2   5

[3,]   3   6
layout.show(6) #显示布局的编号
image.png
m<-matrix(1:4,2,2);m #建立矩阵m,2列2行

layout(m,widths=c(1,3),heights=c(3,1)) #将当时装置按照m进行划分,宽度之比为1:3,高度之比为3:1

layout.show(4)
image.png

http://blog.sina.com.cn/s/blog_bcc268080102wwou.html

attach(mtcars)

layout(matrix(c(1,1,2,3),2,2,byrow = TRUE))

hist(wt)

hist(mpg)

hist(disp)

detach(mtcars)
image.png
上一篇 下一篇

猜你喜欢

热点阅读