Let's say I have two ggplot aesthetics:
a.1 <- aes(v.1=1, v.2=2)
a.2 <- aes(v.3=3)
Is there a way to combine the already built aesthetics? In my example it would be something like:
a.merged <- aes(v.1=2, v.2=2,v.3=3)
I know that aes_string can be used to build an aesthetic from a character vector, that can be concatenated, but I am looking at the case where the two aesthetics are already built and I want to avoid having to convert them to characters first.