R/plotnum.R

Defines functions plotnum

Documented in plotnum

plotnum <-
function(nr,nc){
  num = nr*nc
  par( mfrow = c( nr, nc )) 
  mat1<-matrix(1:num,nr,nc)
  #layout(rbind(1,2), heights=c(1,1))
  
  layout(mat1)
}

Try the SSDforR package in your browser

Any scripts or data that you put into this service are public.

SSDforR documentation built on Nov. 24, 2023, 5:08 p.m.