Reputation: 184
i tried to create a heatmap with my own data and kept only getting white space. I found this very basic instruction on how to work heatmaply based on the mtcars data. After restarting R (close Window and reopen, not build-in restart) I tried and still only received white space. Any ideas on how to resolve this issue? Thanks in advance!
library(heatmaply)
mtcars <- get(data('mtcars'))
heatmaply(mtcars)
Upvotes: 1
Views: 269
Reputation: 184
Fonud it. Apparently it doesn't show up in the small "Viewer" Tab, but is opened once I click the "Show in new window" icon under the Tabs..
Upvotes: 1
Reputation: 144
have a look on this page. There are examples, including mtcars. There is a lot of explanation.
https://cran.r-project.org/web/packages/heatmaply/vignettes/heatmaply.html
KR
Upvotes: 1