I would like to have some plots arranged in a grid, and one of these plots is a qq-plot using the package car. The following
library(car)
library(ggplot2)
library(gridExtra)
n <- 100
df <- data.frame( x=rnorm(n) )
df <- transform(df, y=3*x-1)
p <- ggplot(data=df,aes(x=x,y=y)) + geom_point()
q <- qqPlot(df$x)
grid.arrange(p,q,ncol=2)
issues an error since qqPlot() always plots and returns NULL.
Based on the answers to the question Combine base and ggplot graphics in R figure window, I could find a solution