R_5th图形的组合

对于不同的图形的基本组合,我们可以通过mfrow= c(nrows,ncols)来创建按行填充的图形矩阵,同时 我们也可以通过mfcols = c(nrows,ncols)来创建按列填充的图形矩阵。   > attach(mtcars) > opar < par (no.readonly =  T) > par(mfrow = c(3,1)) > hist(wt) > hist(mpg) > hi
相关文章
相关标签/搜索