简体   繁体   中英

Plot several histograms with ggplot in one window with several variables

I want to plot 6 histograms by using ggplot. Each histogram correspond to one product (eg Modis 2000, Modis 2005, etc.). In x axis will be the Land use (Agriculture, built-up, etc.) and in y axis would the percentage error inlcuding both comission error (_CE) and omission error (_OE). The bars of these two errors should be adjacent for each land use (see plot attached.

structure(list(X = structure(c(1L, 2L, 1L, 2L, 1L, 2L, 1L, 2L, 
    1L, 2L, 1L, 2L), .Label = c("Forest_CE", "Forest_OE"), class = "factor"), 
        Product = structure(c(5L, 5L, 6L, 6L, 3L, 3L, 4L, 4L, 1L, 
        1L, 2L, 2L), .Label = c("CCI 2000", "CCI 2005", "GLC-SHARE2000", 
        "GLC-SHARE2005", "Modis 2000", "Modis 2005"), class = "factor"), 
        Agriculture = c(45.42827657, 36.98156682, 48.19181349, 55.41838134, 
        41.6579589, 29.74910394, 42.88911495, 7.112253642, 38.86168911, 
        86.76103247, 44.08410549, 88.54166667), Built.up = c(0.990712074, 
        0.115207373, 0.702079746, 0.137174211, 0.104493208, 0, 0.996948118, 
        0, 1.591187271, 0, 1.069137562, 0), Mining = c(0.557275542, 
        0, 0.132467877, 0, 0.870776733, 0, 0.22380468, 0, 1.407588739, 
        0, 0.249465431, 0), Other = c(52.73477812, 51.38248848, 50.73519671, 
        44.17009602, 56.94879833, 70.25089606, 55.50356053, 77.97772065, 
        57.71113831, 11.07410491, 54.16963649, 7.899305556), Water = c(0.288957688, 
        11.52073733, 0.238442178, 0.274348422, 0.417972832, 0, 0.386571719, 
        14.91002571, 0.428396573, 2.164862614, 0.427655025, 3.559027778
        )), .Names = c("X", "Product", "Agriculture", "Built.up", 
    "Mining", "Other", "Water"), class = "data.frame", row.names = c(NA, 
    -12L))

This is what I want to achieve but this histogram has been made for one product. I want to create the same kind of histogram for each products and all the histograms should pop-up in one window. Can someone help me out to do that? Thanks for your help.
在此处输入图片说明

You can use facet_wrap to achieve what you have described:

yellowmellow <- structure(list(X = structure(c(1L, 2L, 1L, 2L, 1L, 2L, 1L, 2L, 
                               1L, 2L, 1L, 2L), .Label = c("Forest_CE", "Forest_OE"), class = "factor"), 
               Product = structure(c(5L, 5L, 6L, 6L, 3L, 3L, 4L, 4L, 1L, 
                                     1L, 2L, 2L), .Label = c("CCI 2000", "CCI 2005", "GLC-SHARE2000", 
                                                             "GLC-SHARE2005", "Modis 2000", "Modis 2005"), class = "factor"), 
               Agriculture = c(45.42827657, 36.98156682, 48.19181349, 55.41838134, 
                               41.6579589, 29.74910394, 42.88911495, 7.112253642, 38.86168911, 
                               86.76103247, 44.08410549, 88.54166667), Built.up = c(0.990712074, 
                                                                                    0.115207373, 0.702079746, 0.137174211, 0.104493208, 0, 0.996948118, 
                                                                                    0, 1.591187271, 0, 1.069137562, 0), Mining = c(0.557275542, 
                                                                                                                                   0, 0.132467877, 0, 0.870776733, 0, 0.22380468, 0, 1.407588739, 
                                                                                                                                   0, 0.249465431, 0), Other = c(52.73477812, 51.38248848, 50.73519671, 
                                                                                                                                                                 44.17009602, 56.94879833, 70.25089606, 55.50356053, 77.97772065, 
                                                                                                                                                                 57.71113831, 11.07410491, 54.16963649, 7.899305556), Water = c(0.288957688, 
                                                                                                                                                                                                                                11.52073733, 0.238442178, 0.274348422, 0.417972832, 0, 0.386571719, 
                                                                                                                                                                                                                                14.91002571, 0.428396573, 2.164862614, 0.427655025, 3.559027778
                                                                                                                                                                 )), .Names = c("X", "Product", "Agriculture", "Built.up", 
                                                                                                                                                                                "Mining", "Other", "Water"), class = "data.frame", row.names = c(NA, 
                                                                                                                                                                                                                                                 -12L))

# using reshape 2, we change the data frame to long format
mean.long = melt(yellowmellow, measure.vars = 3:7, variable.name = "Land", value.name = "Percentage")


ggplot(mean.long, aes(x=Land, y=Percentage, fill=factor(X))) + theme_bw() + facet_wrap(~Product)+ 
  geom_bar(position=position_dodge(.9)) + # this line is not needed. Only included as a fix for legend/key random line
  geom_bar(position=position_dodge(.9), stat="identity", colour="black", legend = FALSE)  + 
  scale_fill_grey(start=.4)

I'm guessing this is what you're looking for. I basically put your data into a dataframe (yellowmellow) and turned it into Long Format data using melt in order to use it with ggplot and facet_wrap . Here is the output of the above code:

在此处输入图片说明

EDIT: Alternatively you can have all the graphs on single row by adding nrow=1 to the facet_wrap :

ggplot(mean.long, aes(x=Land, y=Percentage, fill=factor(X))) + theme_bw() + facet_wrap(~Product, nrow=1)+
 geom_bar(position=position_dodge(.9)) + # this line is not needed. Only included as a fix for legend/key random line
  geom_bar(position=position_dodge(.9), stat="identity", colour="black", legend = FALSE)  + 
  scale_fill_grey(start=.4)

Which looks like this:

在此处输入图片说明

I exported this image using the following dimensions to avoid overlapping x-axis labels: 2000*1500.

You can play with different export sizes and font sizes to find what you desire.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM