In R language I want to have a single background horizontal lines (background grid) to make it easier to identify the columns. I will provide an example in the R code.
# install.packages("cowplot")
library(ggplot2)
library(cowplot)
df <- data.frame(
supp = rep(c("VC", "OJ"), each = 3),
dose = rep(c("D0.5", "D1", "D2"), 2),
len = c(6.8, 15, 33, 4.2, 10, 29.5)
)
p <- ggplot(df, aes(x = dose, y = len))+
geom_col(aes(fill = supp), width = 0.7)+ coord_flip()+
theme(axis.text.x=element_blank(),axis.ticks.x=element_blank(),
axis.text.y=element_blank(),axis.ticks.y=element_blank()) +
labs(x = "", y = "") +
theme( legend.position = "bottom",
panel.background = element_rect(fill = "transparent"),
panel.grid.major = element_blank(),
panel.grid.minor = element_blank(),
plot.background = element_rect(fill = "transparent", color = NA))
p
plot_grid(p, p, align = 'h', ncol = 2, rel_widths = c(5, 5))
I want to make a (background grid) in the form of grey horizontal lines that separates each column likee in the screenshot that will provided
I want the background pass by the two plots in the plot_grid with no separation. Because my original plots will be like that but more advance providing the columns names in the first plot only and these lines helps to know what column is that in the second column by looking at the first plot names.
Thanks
One option would be to remove the space between your plots by setting the right/left
plot.margin
to zero, setting theaxis.ticks.length
to zero and by setting the y axis title toNULL
. Finally I usegeom_hline
to add the "grid" lines.Note: I switched the role of
x
andy
to get rid ofcoord_flip
. Makes it easier (for my brain (;) to do the adjustments.