Reducing space between discrete axis labels in ggplot

So I'm trying to create a geom point range diagram with 3 categories, to essentially show a permutation test. The relevant plotting code is:

	## Plot the results.
	p <- ggplot(plot_data, aes(x = clusters, y = obs_log2FD)) +
		geom_pointrange(aes(ymin = boot_CI_2.5, ymax = boot_CI_97.5, color = significance), fatten = 4) +
		theme_bw() +
		geom_hline(yintercept = log2FD_threshold, lty = 2) +
		geom_hline(yintercept = -log2FD_threshold, lty = 2) +
		geom_hline(yintercept = 0) +
		scale_color_manual(values = c("salmon", "grey")) +
		coord_flip()

However, the space between each category is very large. We're a bit limited on space for what we need this for, so ideally we want to cut down on the space between the axis categories. The produced plot is below:

Add a theme that set the aspect ratio of the plot. You can use a single number, but I like to use height/width:
p + theme(aspect.ratio = 1/5)

1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.