Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List of plots using lapply

Tags:

r

lapply

ggplot2

I have been using lapply and sapply as my go-to functions recently. So far so good, but why the following code does not work baffles me.

df<-as.data.frame(matrix(rnorm(50),ncol=5))
names(df)<-c("x1","x2","x3","x4","x5")
df1<-seq_len(10)

ll<-lapply(seq(1,5), function(i) qplot(df1,df[,i]))

I get the error:

Error in `[.data.frame`(df, , i) : undefined columns selected

Ok, apparently I made quite an unfortunate mistake in my reproducible code. It works now, but all the plots in the ll list are the same plot. When I run this:

do.call(grid.arrange,ll)

I get the following image:

Grid

All the plots are the same! This is also the output I get when I run this through my data.

like image 968
Pinemangoes Avatar asked Dec 08 '22 09:12

Pinemangoes


1 Answers

There are problems with lazy evaluation, or something like it anyway. You need to do the following:

ll<-lapply(
  seq(1,5), 
  function(i) qplot(data=data.frame(y=df[, i]), df1, y)
)

This will force the y values to be updated for each plot.

More discussion in this other SO Post.

like image 144
BrodieG Avatar answered Jan 07 '23 02:01

BrodieG