I am getting an error when I try and combine using expression with do.call and plot.
expression
do.call
plot
x <- 1:10 y <- x^1.5
You can use alist rather then list
alist
list
p <- alist(xlab=expression(paste("Concentration (",mu,"M)"))) do.call(plot,c(y~x,p))