We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Related to #15, this is a feature request.
I would like to add axis label, in addition to column labels, as possible with heatmaply: This is a gllobal X and Y label as in usual plots.
axis label
heatmaply
I tried
labs()
ggtitle
annotate()
geom_text()
e.g:
> ggheatmap::ggheatmap(data_matrix ) + labs(title = 'title', subtitle = 'subtitle', caption = 'caption') # plot is generated, and labeled correctly > ggheatmap::ggheatmap(data_matrix ) + labs(title = 'title', subtitle = 'subtitle', caption = 'caption', x ="111", y ="1212121") # no x y labels added
Otherwise labs() works
p <- ggplot(mtcars, aes(mpg, wt, colour = cyl)) + geom_point() p + labs(x = "New x label")
Also nothing (may have mistakes):
p + geom_text(label="Custom X Label", x=5, y=0, hjust=1, vjust=1, size=5) + geom_text(label="Custom Y Label", x=0, y=35, angle=90, hjust=1, vjust=1, size=5)
Same for other trials
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Related to #15, this is a feature request.
I would like to add
axis label
, in addition to column labels, as possible withheatmaply
:This is a gllobal X and Y label as in usual plots.
I tried
labs()
ggtitle
annotate()
geom_text()
e.g:
Otherwise
labs()
worksAlso nothing (may have mistakes):
Same for other trials
The text was updated successfully, but these errors were encountered: