Hello,
I’m using MaasLin3, but I can’t seem to adjust my x-axis in the summary plot. Do you think the settings would be similar to those for ggplot? Any help you could offer would be much appreciated. Thanks!
Hi Rafaela,
The functions maaslin_plot_results
and maaslin_plot_results_from_output
(run on your outputs) will return lists of patchwork
objects which themselves contain the ggplot2
objects. If you overwrite the old objects with the edited objects (e.g., by adding + scale_x_continuous(breaks = c(-1, 0, 1))
), the plots will display your modifications.
Will