Just to clarify, passing a data.frame with all numeric columns to the plot function is equivalent to calling pairs to plot the scatterplot matrix of all columns against each other. You probably know this.
As far as I can tell, the reason for the error is simply that the device (jpeg) is not large enough to sensibly contain the entire scatterplot matrix. For example,
mysamp <- matrix(rnorm(10000), nrow = 100)
mydat <- as.data.frame(mysamp)
plot(mydat)
# Error in plot.new() : figure margins too large
In order to successfully create your plot, pass larger values to the width and height arguments of jpeg. Here's a function with an hwFact argument that should be a numeric value by which to multiply the height and width of your jpeg.
myFun <- function(data, hwFact = 1){
jpeg("rplot1.jpg", width = 500 * hwFact, height = 500 * hwFact)
plot(data, cex = .9, col = "blue")
dev.off()
}
The following iteration uses the above function to successively increase hwFact until the jpeg is created. Once the jpeg is successfully created, the iteration number is printed and the iteration stops. (This will be pretty much the bare minimum size of the plot, which will most likely be too small to read anything.)
for(i in 1:20){
res <- tryCatch(myFun(mydat, i), error = function(e) e)
if(!"error" %in% class(res)) {
print(i)
break
}
}
# [1] 3
So it took a jpeg with a width and height of 1500 (that's 500 * 3) to create a (completely illegible) plot. Once you know the minimum size, you'll have to experiment to find the appropriate size.