Last active
December 15, 2015 04:50
-
-
Save wush978/5204788 to your computer and use it in GitHub Desktop.
Key word: R, xtable, pop-up comment
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#'@title Generate HTML table from data.frame and add a pop-up comment on specific table entry | |
#'@param r_dataframe a data.frame object | |
#'@param js_show a list object whose name is the column names of r_dataframe, value is the added pop-up comment | |
html_table_popup_comment <- function(r_dataframe, js_show, ...) { | |
stopifnot(require(xtable)) | |
global.env <- environment() | |
r_dataframe.xtable <- xtable(r_dataframe) | |
global.env$sanitize <- function(str) { | |
result <- str | |
result <- gsub("&", "& ", result, fixed = TRUE) | |
result <- gsub(">", "> ", result, fixed = TRUE) | |
result <- gsub("<", "< ", result, fixed = TRUE) | |
return(result) | |
} | |
global.env$i <- 0 | |
print(names(js_show)) | |
result <- print.xtable(r_dataframe.xtable, type="html", sanitize.text.function=function(str) { | |
str <- global.env$sanitize(str) | |
i <- get("i", envir=parent.frame(1)) | |
x <- get("x", envir=parent.frame(1)) | |
print(colnames(x)[i]) | |
if (colnames(x)[i] %in% names(js_show)) { | |
str <- paste("<a title=\"", js_show[[colnames(x)[i]]], "\">", str, "</a") | |
} | |
return(str) | |
}, sanitize.rownames.function = global.env$santize, sanitize.colnames.function = global.env$santize, print.results=FALSE, ...) | |
return(result) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment