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
library(plotly) library(ggplot2) library(pheatmap) dat <- matrix(rnorm(100, 3, 1), ncol=10) names(dat) <- paste("X", 1:10) p <- pheatmap(dat, display_numbers = T) ggplotly(p)
yields the following error:
Error in UseMethod("ggplotly", p) : no applicable method for 'ggplotly' applied to an object of class "pheatmap"
The text was updated successfully, but these errors were encountered:
Looks as though {pheatmap} is implemented at the {grid} level, so like #2020 and #2028, it won't make sense to add support for it any time soon.
{pheatmap}
{grid}
As a workaround, I'd suggest using the {heatmaply} package instead, which appears to be quite similar
{heatmaply}
Sorry, something went wrong.
cpsievert
moutikabdessabour
No branches or pull requests
yields the following error:
The text was updated successfully, but these errors were encountered: