Tagged Questions
The facet-wrap tag has no wiki summary.
4
votes
2answers
1k views
Showing multiple axis labels using ggplot2 with facet_wrap in R
I've got a nice facet_wrap density plot that I have created with ggplo2. I would like for each panel to have x and y axis labels instead of only having the y axis labels along the left side and the x ...
2
votes
1answer
36 views
ggplot2: Splitting facet/strip text into two lines
Consider the following ggplot2 graph with long facet/strip text
broken in two lines.
The text goes outside the area devoted to facet titles.
library(ggplot2)
x <- c(1:3, 1:3)
y <- c(3:1, 1:3)
...
2
votes
1answer
103 views
xlabel and ylabel for facet
I'm doing like this:
ggplot(IDPlotLn, aes(x=CO3, y=CRf)) +
xlab(xlabel) +
ylab(ylabel) +
opts(
axis.text.x = theme_text(size=10, face="plain", colour="black",vjust=1),
...
1
vote
1answer
57 views
Adding individual lines to facet_wrapped plot
I'm trying to use facet_wrap to plot a bunch of dataset as scatterpoints, each with an individual line in them indicating when a specific event happened. However, I haven't been able to get the lines ...
1
vote
1answer
356 views
overlapping y-scales in facet (scale=“free”)
I've been learning ggplot in the last few weeks. Generally, I'm getting things done (slowly though), but now I'm stuck. I created the following facetted plot: ...
0
votes
1answer
636 views
Creating a facet_wrap plot with ggplot2 with less annotations than plots
I am using ggplot2 to plot a figure that contains nine facets. Each facet represents the relationship between two variables and I would like to annotate the facets that display statistically ...