Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions R/describe.s
Original file line number Diff line number Diff line change
Expand Up @@ -1431,12 +1431,12 @@ html_describe_con <- function(x, sparkwidth=200,
## If the variable was transformed, also put in the leftmost tooltip
## the name of the transformation

g <- function(x) {
trans <- x$trans
g <- function(u) {
trans <- u$trans
lo <- if(length(trans))
paste0('Transformation for<br>histogram:', trans[[1]])

gv <- x$gridvalues
gv <- u$gridvalues
val <- gsub('; ', '<br>', gv$values)
spikespark(val, gv$frequency, ttlow=lo, w=sparkwidth, cumulative=TRUE,
xpre='')
Expand Down