tooltip | R Documentation |
Adds a text tooltip to the HTML matrix.
tooltip(x, tooltip = NULL)
add_tooltip(x, tooltip = NULL)
x |
an html_matrix object |
tooltip |
character: text to show (default: |
An html_matrix object
library("magrittr")
library("tools")
m <- matrix(1:12, ncol=4)
hm <- html_matrix_sk(m, title='', fmt=rep("%f", ncol(m))) %>%
add_tooltip(sprintf("Table has %0.f rows and %0.f columns", nrow(.), ncol(.)))
if (interactive()) html <- toHTML(hm, browser=TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.