2
votes
2answers
56 views

Combining new lines and italics in facet labels with ggplot2

I have a problem getting some words used in facet labels in italics. I use the following code to create new lines for the labels: levels(length_subject$CONSTRUCTION) <- c("THAT \n ...
2
votes
0answers
61 views

Normalizing faceted histograms separately in ggplot2

My questions is similar to Normalizing y-axis in histograms in R ggplot to proportion but I'd like to add to it a bit. In general, I have 6 histograms in a 2x3 facet design, and I'd like to normalize ...
3
votes
2answers
114 views

ggplot, facet, piechart: placing text in the middle of piechart slices

Trying to produce piechart with ggplot and facing the problem with placing text in the middle of each slice: dat = read.table(text = "Channel Volume Cnt AGENT high 8344 ...
0
votes
1answer
92 views

discrete and continuous scales on same axis in facet_grid

I want to use facet_grid in ggplot2 to produce two graphs with continuous and discrete scales on the same axis - essentially my vector fac has a numeric part and a factor part. ...
2
votes
0answers
122 views

How to wrap stacked facets in ggplot2

In my data.frame df, I have variables A, B, C and D. I would like to plot C vs D, and facet with A and B. B is a factor with 3 levels and I would like for it to be facetted vertically, and A has many ...
2
votes
2answers
116 views

ggplot2 + aes_string inside a function via formula interface

Interactively, this example works fine: p <- ggplot(mtcars, aes(mpg, wt)) + geom_point() p + facet_grid(. ~ vs) Now, make a function with a formula interface and use aes_string to do this same ...
6
votes
2answers
189 views

How to create a faceted line-graph using ggplot?

I have a data frame created with this code: require(reshape2) foo <- data.frame( abs( cbind(rnorm(3),rnorm(3, mean=.8),rnorm(3, mean=.9),rnorm(3, mean=1)))) qux <- data.frame( abs( ...
1
vote
0answers
206 views

customized scale_y_continuous() within facet_grid() in ggplot2

I am looking to add an additional white line to the background grid and a additional tick mark, but only within the facet Low Tide, is that in any way possible? I imagine i would be possible to add a ...
1
vote
1answer
147 views

Facet for continuous variables in ggplot2 [duplicate]

Possible Duplicate: ggplot - facet by function output ggplot2's facets option is great for showing multiple plots by factors, but I've had trouble learning to efficiently convert continuous ...
0
votes
1answer
66 views

Fixing the order of facets in ggplot

Data: type size amount T 50% 48.4 F 50% 48.1 P 50% 46.8 T 100% 25.9 F 100% 26.0 P 100% 24.9 T 150% 21.1 F 150% 21.4 ...
0
votes
1answer
82 views

Facet_grid output in more than one window

My code: ggplot(data=ICL3, aes(x=as.Date(AÑO_MES), y=IndICL3, group=RUN_FM, colour=RUN_FM)) + labs(colour = "RUN Fondos") + coord_cartesian(ylim=c(0, 150)) + xlab("Periodo") + ylab("% ...
1
vote
1answer
141 views

Internal ordering of facets ggplot2

I'm trying to plot a facets in ggplot2 but I struggle to get the internal ordering of the different facets right. The data looks like this: head(THAT_EXT) ID FILE GENRE NODE ...
0
votes
1answer
107 views

How to stop ggplot2 facet duplicating variable?

So I am using ggplot2 to make a nice little plot with my data: df1 <- data.frame(Background = factor(c("Input", "H3", "Overlap","Input", "H3", "Overlap"), levels=c("Input", "H3", "Overlap")), ...
3
votes
1answer
171 views

Highlight data individually with facet_grid in R

I am using facet_grid in R to plot RT data for 5 different groups. I would like to highlight the data between 5 and 95% for each group. With the code below, I am using the percentile of the entire ...
5
votes
1answer
160 views

ggplot - facet by function output

I'm unsure how to facet by a function of the data in the data element of a ggplot object. In the following toy example, what I want to do is something like this: df <- data.frame(x=1:8, ...
1
vote
1answer
383 views

How to add different lines for facets

I have data were I look at the difference in growth between a monoculture and a mixed culture for two different species. And I made a graph to make my data clear. I want a barplot with errorbars, ...
2
votes
2answers
660 views

correlation values in a facet grid from ggplot2

When using a facet_grid in ggplot2 I would like to be able to have value of the correlation for the subsetted data for each grid cell in the top right corner of the specific plot. e.g. if running: p ...
22
votes
1answer
983 views

How do you add a general label to facets in ggplot2?

I often have numeric values for faceting. I wish to provide sufficient information to interpret these faceting values in a supplemental title, similar to the axis titles. The labeller options repeat ...
1
vote
1answer
469 views

Multiple plots by factor in ggplot (facets)

I have a data frame with two qualitative variables (Q1, Q2) which are both measured on a scale of LOW, MEDIUM, HIGH and a continuous variable CV on a scale 0-100. s = 5 trial <- data.frame(id = ...
2
votes
1answer
145 views

Force X axis on both graphs in a facet grid when X values are the same

I have data with about 30 categories for the X axis in two groups for faceting. I will show this with some random data: dataf <- data.frame(x=c(1:30), A=rnorm(30,20,5), B=rnorm(30,15,0.5)) datam ...
1
vote
1answer
144 views

Adjust linetype of One Line in a facet_grid

I have a plot similar to this one: b <- ...
1
vote
1answer
186 views

overlapping and fixing x-scales in facet (scale=“free”) in order to make a film

With the help of @Justin on another post, I plotted simulation result with the facet_grid option in ggplot2. The post with data and answer is here: Use facet_grid option to plot column of dataframe ...
1
vote
1answer
277 views

Use facet_grid option to plot column of dataframe with ggplot2

I get some result from simulation, and i want to make a facetting like this diagram below, and i don't know if it's possible to make this with ggplot2 and the facet_grid option. My result for ...
2
votes
1answer
1k views

R ggplot facet: varying x axis formatting and varying aesthetics by facet

I was hoping someone could help with 1) varying the format of the x-axis across panels in a facet plot 2) showing the loess smoother only on the left side of the facet. The left side is longer ...
4
votes
1answer
442 views

Ignore outliers in ggplot2 boxplot + faceting + “free” options

do you have an idea how I could adjust my Y axis in order to ignore outliers, like in this post, but in a more challenging case where I have 4 boxplots and a "free faceting" layout. p <- ...
6
votes
1answer
572 views

different size facets proportional of x axis on ggplot 2 r

The following is a situation: group1 <- seq(1, 10, 2) group2 <- seq(1, 20, 3) x = c(group1, group2) mydf <- data.frame (X =x , Y = rnorm (length (x),5,1), groups = c(rep(1, length ...
0
votes
1answer
373 views

Redundant facet and axis labels in ggplot2

I have two questions regarding axis and facet labels in ggplot. I have searched around but failed to find exactly what I wanted. I am using dotplots to graph treatment effects and confidence ...
3
votes
1answer
179 views

How do I place an identical smooth on each facet of a ggplot2 object?

Here's an example: eg <- data.frame(x = c(1:50, 50:1), y = c(1:50, 1:50) + rnorm(100), g = rep(c("a","b"), each=50)) qplot(x, y, data = eg) + ...
3
votes
1answer
751 views

R: {ggplot2}: How / Can I independently adjust the x-axis limits on a facet_grid plot?

I created a faceted set of three univariate densities -- comparing MCMC methods. Shown below For the moment, I don't care about the tails. So how can I change the x-axis limits on the plots above ...
4
votes
1answer
5k views

R ggplot2 facetting - Error: No Layers in Plot

I've been struggling with for a couple of hours but I'm sure it's dead simple. I have a dataset that you can reproduce by copying and pasting from the jumble at the bottom here. It starts off ...
3
votes
1answer
403 views

Include unused factor levels in facets with ggplot2

Is there a way to include a panel for unused levels of a factor used in faceting? The reason I want to do this is because I'm arranging several separate plots in rows showing different measures, with ...
1
vote
1answer
628 views

Subset of data included in more than one ggplot facet

I have a population and a sample of that population. I've made a few plots comparing them using ggplot2 and its faceting option, but it occurred to me that having the sample in its own facet will ...
1
vote
1answer
834 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: ...
2
votes
1answer
263 views

how to change the width of the gaps between the panels in facet in ggplot2?

as title, I have having quite a lot of panels when generating a chart by ggplot, and I think the gap is a bit too wide, can I adjust it? Thanks!
13
votes
1answer
589 views

can I change the position of the strip label in ggplot from the top to the bottom?

I know this is not quite a data visualization issue, but the boss asked for it, so I need to figure out if it is possible. Thanks!
0
votes
1answer
371 views

Smooth Error in qplot from ggplot2

I have some data that I am trying to plot faceted by its Type with a smooth (Loess, LM, whatever) superimposed. Generation code is below: testFrame <- ...
2
votes
1answer
3k views

how to change strip.text labels in ggplot with facet and margin=TRUE

I have looked here but still can't figure it out. How do I change the strip.text.x labels in a ggplot with faceting? Specifically I am using facet_grid with margins. The strip.text label for the ...
4
votes
1answer
3k views

R ggplot2: Arrange facet_grid by non-facet column (and labels using non-facet column)

I have a couple of questions regarding facetting in ggplot2... Let's say I have a query that returns data that looks like this: (note that it's ordered by Rank asc, Alarm asc and two Alarms have a ...