Skip to content

multiple graphs

3 messages · Moor MHM.de, Uwe Ligges, vito muggeo

#
Moor MHM.de wrote:

            
See ?par, e.g. set par(mar = rep(0,4)) for the inner plots.

Uwe Ligges
#
You can use

par(mai=_yourValues_)

For instance:

 > par(mfcol=c(5,2) )
 > par(mai=c(0,0,0,0))
 > replicate(10,plot(1:10))

Modify the mai parameter and arguments in the plot() function to get 
better results,
hope this helps,

vito
Moor MHM.de wrote: