Feature request: a parameter to control the size of population's labels
Hi Jim,
I don't know if you are still maintaining this package, but if you are I wanted to ask if there is a way to control the size of the populations' labels in the genotypes plot. Maybe it's something obvious with ggplot, apologies if so. But it could be nice to have a parameter to control that aspect of the plot a bit more.
Thanks,
Lore
Hi Lore,
The individual outputs are all individual ggplot objects so should be customisable in the same way that a normal ggplot plot is. For changing the y axis label size, this should be something like
your_plot = your_plot + theme(axis.text.y = element_text(size = some_new_size)
You can just overwrite the individual genotype plot in the list object and then combine it with the other features using the usual combine_genotype_plot() function. If you take a look at the 'Manipulating the dendrogram' section of the README, changing the label sizes in the genotype plot heatmap should be the same process.
Any issues let me know.
All the best, Jim