BeccaLi
BeccaLi

Reputation: 184

R: Heatmaply creates empty/ white space in viewer

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

Answers (2)

BeccaLi
BeccaLi

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

Philipp Neuber
Philipp Neuber

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

Related Questions