Skip to content

Instantly share code, notes, and snippets.

@ChrisBeeley
Created May 30, 2022 12:49
Show Gist options
  • Save ChrisBeeley/3f712d4a50806689eccabf7dca2927e8 to your computer and use it in GitHub Desktop.
Save ChrisBeeley/3f712d4a50806689eccabf7dca2927e8 to your computer and use it in GitHub Desktop.
library(sparkline)
library(formattable)
library(dplyr)
x = c(0, rep(1000, 5), rep(1000.000001, 5))
res <- mtcars |>
mutate(summary = as.character(
htmltools::as.tags(
sparkline(x, type = "bar",
colorMap = c("white", rep("green", 6), rep("red", 4)))
)
)) |>
formattable() |>
formattable::as.htmlwidget()
res$dependencies <- c(
res$dependencies,
htmlwidgets:::widget_dependencies("sparkline", "sparkline")
)
res
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment