2

I have the following R plot.

library(tidyverse)

dat <- data.frame(
  FunctionClass = factor(c("A", "B", "C", "D", "E", "F", "G", "H", "I",     "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "Y", "Z"), levels=c("A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "Y", "Z")),
  legend = c("A: RNA processing and modification", "B: Chromatin structure and dynamics", "C: Energy production and conversion", "D: Cell cycle control, cell division, chromosome partitioning", "E: Amino acid transport and metabolism", "F: Nucleotide transport and metabolism", "G: Carbohydrate transport and metabolism", "H: Coenzyme transport and metabolism", "I: Lipid transport and metabolism", "J: Translation, ribosomal structure and biogenesis", "K: Transcription", "L: Replication, recombination and repair", "M: Cell wall/membrane/envelope biogenesis", "N: Cell motility", "O: Posttranslational modification, protein turnover, chaperones", "P: Inorganic ion transport and metabolism", "Q: Secondary metabolites biosynthesis, transport and catabolism", "R: General function prediction only", "S: Function unknown", "T: Signal transduction mechanisms", "U: Intracellular trafficking, secretion, and vesicular transport", "V: Defense mechanisms", "W: Extracellular structures", "Y: Nuclear structure", "Z: Cytoskeleton"),
  Frequency=c(360,391,897,1558,1168,448,1030,536,732,1292,2221,2098,789,117,1744,732,437,5162,1251,2191,603,216,2,14,739)
)

dat <- cbind(
  dat
  , Frequency2=c(523,900,400,155,168,428,1050,516,742,129,221,2698,7829,1147,144,7132,4437,562,1551,2691,103,516,22,12,939))

p <- dat %>%
  gather("variable", "value", -FunctionClass, -legend) %>%
  ggplot(aes(FunctionClass, value, fill = legend, group = variable)) +
  geom_bar(stat="identity", position=position_dodge(), colour="seashell") +
  guides (fill = guide_legend(ncol = 1)) +
  xlab("COG Class")

p + theme(legend.position="bottom")

However, due to the quantity of legends in the plot, the legends take up a lot of space. Is there a way to split the legends into two columns, instead of one long column?

Thanks!

Alex
  • 75
  • 1
  • 8
  • 1
    Have you seen [this](https://stackoverflow.com/questions/18400432/creating-multi-column-legend-in-ggplot)? It worked for me. – Paul Jan 28 '20 at 10:28
  • Ahhhh, of course! Thanks!! – Alex Jan 28 '20 at 10:32
  • 1
    I think the `ncol = 1` should be `ncol = 2` – 4rj4n Jan 28 '20 at 10:32
  • Does this answer your question? [Creating multi column legend in ggplot](https://stackoverflow.com/questions/18400432/creating-multi-column-legend-in-ggplot) – 4rj4n Jan 28 '20 at 10:33

1 Answers1

1

From this post here is a solution to get a multi-colum legend:

p <- dat %>%
  gather("variable", "value", -FunctionClass, -legend) %>%
  ggplot(aes(FunctionClass, value, fill = legend, group = variable)) +
  geom_bar(stat="identity", position=position_dodge(), colour="seashell") +
  xlab("COG Class") +
  guides(fill=guide_legend(ncol=2)) # adjust the number of columns with ncol = xxx and be sure to use the right aes (fill, color, etc)

p + theme(legend.position="bottom")
Paul
  • 2,850
  • 1
  • 12
  • 37