in advance, sorry if I bother you with trivial questions.
I had to make 1 drawing, which contains 4 different mutually conjugate graphs. The view of the desired graph can be seen as follows: 
Every single stroke I make with pairs of functions ():
pairs(cbind(AAPL,MSFT,INTC,FB,MU,IBM),main="Frequency=1 Min.",font.labels = 2, col="blue",pch=16, cex=0.8, cex.axis=1.5,las=1) pairs(cbind(AAPL,MSFT,INTC,FB,MU,IBM),main="Frequency = 2 Min.",font.labels = 2, col="blue",pch=16, cex=0.8, cex.axis=1.5,las=1) pairs(cbind(AAPL,MSFT,INTC,FB,MU,IBM),main="Frequency = 5 Min.",font.labels = 2, col="blue",pch=16, cex=0.8, cex.axis=1.5,las=1) pairs(cbind(AAPL,MSFT,INTC,FB,MU,IBM),main="Frequency = 10 Min.",font.labels = 2, col="blue",pch=16, cex=0.8, cex.axis=1.5,las=1)
When I combine over paired graphs through the use of the layout function, it does not work (as far as I understood from similar questions layout () and pairs () cannot be combined).
If someone has an elegant way to combine 4 different correlation correlation graphs, help will be greatly appreciated.