4

我正在使用以下内容绘制下面给出的图表:

data <- structure(list(Type1 = c("DB", "DB", "DB", "DB", "DB", "DB", 
"DB", "DB", "DB", "DB", "DB", "DB", "DB", "Manual", "Manual", 
"Manual", "Manual", "Manual", "Manual", "Manual", "Manual", "Manual", 
"Manual", "Manual", "Manual", "Manual", "Manual", "Manual"), 
    Type2 = c(1L, 1L, 1L, 1L, 1L, 2L, 2L, 2L, 2L, 3L, 3L, 3L, 
    3L, 1L, 1L, 1L, 1L, 1L, 2L, 2L, 2L, 2L, 2L, 3L, 3L, 3L, 3L, 
    3L), Category = c("A", "B", "C", "D", "E", "A", "B", "F", 
    "G", "A", "B", "C", "H", "I", "J", "K", "L", "M", "O", "J", 
    "P", "K", "Q", "M", "K", "P", "J", "P"), Percent = c("83.5106383", 
    "9.574468085", "5.85106383", "0.531914894", "1/188*100", 
    "85.24590164", "11.47540984", "1/61*100", "1.639344262", 
    "90", "3.333333333", "3.333333333", "3.333333333", "20.10582011", 
    "10.05291005", "6.349206349", "5.82010582", "4.761904762", 
    "31.14754098", "16.39344262", "6.557377049", "6.557377049", 
    "4.918032787", "30", "23.33333333", "16.66666667", "10", 
    "6.666666667")), .Names = c("Type1", "Type2", "Category", 
"Percent"), row.names = c(NA, -28L), class = "data.frame")

data$Percent <- as.numeric(data$Percent)

g= ggplot(data, aes(x=Category, y=Percent)) + 
          geom_bar(width=0.8, stat="identity", position=position_dodge()) + 
          facet_grid(Type1 ~ Type2, ) + 
          theme_bw() + 
          coord_flip() + 
          scale_y_continuous(limits=c(0,100))

print(g)

在此处输入图像描述

有什么方法可以让每行只使用非零的标签吗?例如,采取DB行。它仅使用 6 个标签,但显示所有 16 个标签,因为其他 10 个标签正在被Manual部分数据使用。对于Manual行也是如此。我正在寻找的是这样的:

        1            2             3
H
G
D                                        DB
C
B
A

Q
P
O
G                                        MANUAL
M
L
K
J
I

关于如何做到这一点的任何建议?

4

2 回答 2

3

它只会删除那些不在任何方面的元素。但是您可以在 facet_grid() 中使用 scales="free" 参数。

g + facet_grid(Type1 ~ Type2, scales="free")

但我认为 facet_wrap 可能会为您提供更合适的可视化:

ggplot(data, aes(x=Category, y=Percent)) + 
  geom_bar(width=0.8, stat="identity", position=position_dodge()) + 
  facet_wrap(Type1 ~ Type2,scales="free") + 
  theme_bw() +
  scale_y_continuous(c(0,100)) + 
  coord_flip() + 
  opts()

在此处输入图像描述

于 2012-04-10T03:36:22.750 回答
2

facet_grid(scales="free")组合和时似乎存在错误或意外行为coord_flip()

以下是 2 种可能的解决方法:

library(ggplot2)

# Removed quotes from Percent values, so that Percent will be numeric.
dat <- structure(list(Type1 = c("DB", "DB", "DB", "DB", "DB", "DB", 
"DB", "DB", "DB", "DB", "DB", "DB", "DB", "Manual", "Manual", 
"Manual", "Manual", "Manual", "Manual", "Manual", "Manual", "Manual", 
"Manual", "Manual", "Manual", "Manual", "Manual", "Manual"), 
    Type2 = c(1L, 1L, 1L, 1L, 1L, 2L, 2L, 2L, 2L, 3L, 3L, 3L, 
    3L, 1L, 1L, 1L, 1L, 1L, 2L, 2L, 2L, 2L, 2L, 3L, 3L, 3L, 3L, 
    3L), Category = c("A", "B", "C", "D", "E", "A", "B", "F", 
    "G", "A", "B", "C", "H", "I", "J", "K", "L", "M", "O", "J", 
    "P", "K", "Q", "M", "K", "P", "J", "P"), Percent = c(83.5106383, 
    9.574468085, 5.85106383, 0.531914894, 1/188*100, 
    85.24590164, 11.47540984, 1/61*100, 1.639344262, 
    90, 3.333333333, 3.333333333, 3.333333333, 20.10582011, 
    10.05291005, 6.349206349, 5.82010582, 4.761904762, 
    31.14754098, 16.39344262, 6.557377049, 6.557377049, 
    4.918032787, 30, 23.33333333, 16.66666667, 10, 
    6.666666667)), .Names = c("Type1", "Type2", "Category", 
"Percent"), row.names = c(NA, -28L), class = "data.frame")

figure_1 = ggplot(dat, aes(x=Category, y=Percent)) + 
           geom_bar(width=0.8, stat="identity") + 
           facet_grid(Type2 ~ Type1, scales="free_x") + 
           theme_bw() + 
           scale_y_continuous(limits=c(0, 100)) +
           opts(title="Figure 1. Success!\n(But Rotated 90 Degrees)")

figure_2 = ggplot(dat, aes(x=Percent, y=Category)) + 
           geom_point(size=3) + 
           facet_grid(Type1 ~ Type2, scales="free_y") + 
           theme_bw() + 
           scale_x_continuous(limits=c(0, 100)) +
           opts(title="Figure 2. Success!\n(But Dotplot Instead Of Barplot)")

# Unexpected interaction between scales="free" and coord_flip()?
figure_3 = ggplot(dat, aes(x=Category, y=Percent)) + 
           geom_bar(width=0.8, stat="identity") + 
           facet_grid(Type1 ~ Type2, scales="free") + 
           theme_bw() + 
           scale_y_continuous(limits=c(0, 100)) +
           coord_flip() +
           opts(title="Figure 3. Strange Y-axis Behavior.")

在此处输入图像描述 在此处输入图像描述 在此处输入图像描述

于 2012-04-10T03:46:17.527 回答