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
In rmarkdown a d3heatmap only renders when is explicitly returned to the top level.
For example, in this simple Rmarkdown document, the first and third heatmaps are rendered in the html document, while the second is not.
library(d3heatmap) x <- matrix(rnorm(100), ncol=10)
d3heatmap(x)
f1 <- function(x) { d3 <- d3heatmap(x) print(d3) } f1(x)
f2 <- function(x) { d3 <- d3heatmap(x) d3 } f2(x)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
output: html_document
In rmarkdown a d3heatmap only renders when is explicitly returned to the top level.
For example, in this simple Rmarkdown document, the first and third heatmaps are rendered in the html document, while the second is not.
This is displayed
d3heatmap(x)
This is not displayed
This is displayed
The text was updated successfully, but these errors were encountered: