How can I change the font size of the title of a graphic created by the pheatmap package
You can change the argument fontsize
, which changes the size of all the text. You might need to change fontsize_row
and fontsize_col
to keep those fixed. Unfortunately, I don't know of any way to control separately the "main" fontsize from the "legends" fontsize.
While {pheatmap}
is great in most cases, if you need finer control of the appearance it might be easier
- with
{ggplot2}
, usingpivot_longer()
andgeom_tile()
. Works great as long as you don't need dendrograms - with
{complexHeatmap}
, which takes some learning and is a bit more complicated, but allows very fine control over every aspect.
Thank you~ ,I achieve this goal by adjusting three parameters fontsize,fontsize_row,fontsize_col
This topic was automatically closed after 45 days. 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.