2014-02-08 2 views
6

Я пытаюсь установить выражения как текст оси x в среде грани в ggplot2 с неравной длиной меток. Например:Как установить выражения в виде оси граней в ggplot2?

dat <- structure(list(Species = structure(c(1L, 1L, 1L, 1L, 2L, 2L, 
2L, 2L, 2L), .Label = c("A", "B"), class = "factor"), Individual = structure(c(1L, 
2L, 3L, 5L, 1L, 2L, 3L, 4L, 5L), .Label = c("1", "2", "3", "4", 
"expression(bar(\"x\"))"), class = "factor"), mean = c(45, 32, 
100, 59, 65, 110, 87, 93, 88.75), min = c(34, 20, 89, 47.66666667, 
54, 100, 67, 85, 76.5), max = c(54, 42, 110, 68.66666667, 76, 
120, 99, 105, 100)), .Names = c("Species", "Individual", "mean", 
"min", "max"), class = "data.frame", row.names = c(NA, -9L)) 

require(ggplot2) 

enter image description here

This answer описывает, как сделать это без граней. Я управляю установить labels, но я не могу найти, как установить метки для каждой грани отдельно:

ggplot(dat, aes(x = Individual, y = mean, ymin = min, ymax = max, color = Species)) + 
    geom_pointrange() + 
    facet_wrap(~Species, scales = "free") + 
    scale_x_discrete(labels = c("1", "2", "3", expression(bar("x")))) + 
    theme_grey(base_size = 18) 

enter image description here

Длинный вектор или список с указанием labels, кажется, не работает:

ggplot(dat, aes(x = Individual, y = mean, ymin = min, ymax = max, color = Species)) + 
    geom_pointrange() + 
    facet_wrap(~Species, scales = "free") + 
    scale_x_discrete(labels = c("1", "2", "3", expression(bar("x")), "1", "2", "3", "4", expression(bar("x")))) + 
    theme_grey(base_size = 18) 

enter image description here

ggplot(dat, aes(x = Individual, y = mean, ymin = min, ymax = max, color = Species)) + 
    geom_pointrange() + 
    facet_wrap(~Species, scales = "free") + 
    scale_x_discrete(labels = list(c("1", "2", "3", expression(bar("x")), c("1", "2", "3", "4", expression(bar("x")))))) + 
    theme_grey(base_size = 18) 

enter image description here

Есть ли способ сделать это в ggplot2?

+0

В этом примере они различные виды и выражение (bar («x»)) среднее значение по отдельным лицам (1: 4 в фасете B). – Mikko

ответ

5

Вы можете добавить аргументы брейки в scale_x_discrete:

ggplot(dat, aes(x=Individual, y = mean,ymin = min, ymax = max, color=Species)) + 
geom_pointrange() + facet_wrap(~Species, scales = "free_x") + 
scale_x_discrete(breaks=levels(factor(dat$Individual)), 
       labels = c("1", "2", "3", "4", expression(bar("x")))) + 
theme_grey(base_size = 18) 

enter image description here

+0

+1 Хорошее решение. –

2

В качестве обходного пути, вы можете использовать scales = "free_y":

ggplot(dat, aes(x = Individual, y = mean, 
       ymin = min, ymax = max, color = Species)) + 
    geom_pointrange() + facet_wrap(~Species, scales = "free_y") + 
    scale_x_discrete(labels = c("1", "2", "3", "4", expression(bar("x")))) + 
    theme_grey(base_size = 18) 

enter image description here

Смежные вопросы