How to combine do.call() plot() and [removed])

前端 未结 3 1135
滥情空心
滥情空心 2021-02-19 19:50

I am getting an error when I try and combine using expression with do.call and plot.

 x <- 1:10
 y <- x^1.5
         


        
3条回答
  •  轮回少年
    2021-02-19 20:24

    You can use alist rather then list

    p <- alist(xlab=expression(paste("Concentration (",mu,"M)")))
    do.call(plot,c(y~x,p))
    

提交回复
热议问题