I am trying to use ggplot2 layer in my graph plotted via Rpy2, which I don' see described in the manual (http://rpy.sourceforge.net/rpy2/doc-2.1/html/graphics.html)
Is the correct form for calling the layer function the following? From R,
p <- p + layer(data=df, mapping=aes(x=x, y=y, label=foo), geom='text', hjust=1, vjust=1)
Should be in Rpy2:
p += ggplot2.layer(**{"data": df,
"mapping": ggplot2.aes_string(x="x", y="y", label="foo"),
"geom": "text"})
"hjust": 1,
"vjust": 1})
When I try this, I get errors like:
TypeError: new() got an unexpected keyword argument 'vjust'
and:
TypeError: new() got an unexpected keyword argument 'mapping'
Just wondering if this is the correct way to add a layer to a plot from Rpy2, or if there's a different idiom? thanks.
layerat all, rather than the typicalgeom_*andstat_*functions? – joran Feb 18 at 3:35plt <- qplot(data=iris, x=Sepal.Width, y=Sepal.Length) + facet_wrap(~Species); plt <- plt + layer(data=textdf.a, mapping=aes(x=x, y=y, label=textdf.b), geom='text', hjust=1, vjust=1)a way to annotate the scatter plots made by thisqplotcall. I am open to alternatives. – user248237dfsf Feb 18 at 3:40qplotentirely, and switch toggplot(). (Basically) never uselayer. There is always a specificgeom_*function that is equivalent. In this case,geom_text(). – joran Feb 18 at 3:41geom_text(data = textdf.a,aes(...),hjust = ...,vjust = ...). – joran Feb 18 at 3:43