gpt4 book ai didi

html - R : Add CSS color coding in a HTML table

转载 作者:可可西里 更新时间:2023-11-01 14:49:19 25 4
gpt4 key购买 nike

我需要将 data.frame 导出到 HTML 文件并根据条件为表格单元格的背景着色。

示例数据框:

Name   Low    High    Value1    Value2    Value3
Ben 3 10 2 5 8
Cat 3 10 3 9 4
Dan 3 10 5 7 6

期望输出是这样的:

enter image description here

我用下面的代码生成了 HTML,谢谢你的帮助

HTMLheaderText ="Sample Report"
HTMLfile =HTMLInitFile(outdir = getwd()
, filename = "sample"
, extension = "html"
, Title = "R Output"
, CSSFile = paste(getwd(), "/html_tables.css", sep="")
, HTMLframe = FALSE
, useGrid = FALSE
, useLaTeX = FALSE)

HTML(HTMLheaderText, file = HTMLfile)
HTML(dataSet, row.names = FALSE)
HTMLEndFile()

最佳答案

我找到了我需要的解决方案,尽管这可能不是最好的方法。我在每个单元格中添加了一个跨度,并使用 jquery 动态更改单元格的背景。

HTMLheaderText = "Sample Report"

HTMLfile =HTMLInitFile(outdir = getwd()
, filename = "sample"
, extension = "html"
, Title = "R Output"
, CSSFile = paste(getwd(), "/html_tables.css", sep="")
, HTMLframe = FALSE
, useGrid = TRUE
, useLaTeX = FALSE)

HTML('<script src="./jquery-1.7.2.min.js"></script>', file = HTMLfile)

HTML("<script>
$(document ).ready(function() {
$('.dataframe tr).each(function() {
var low = $(this).find('td>span.low').text();
var high = $(this).find('td>span.high').text();
$(this).find('td>span.value').each(function() {
$(this).css('color', 'white');
var value= $(this).text();
if (value> low && value< high) {
$(this).parent().css('background-color', 'green');
} else {
$(this).parent().css('background-color', 'red');
}
cpk = Number(Math.round(cpk+'e'+4)+'e-'+4);;
$(this).text(value);
});

})
});
</script>", file = HTMLfile)

HTML(HTMLheaderText, file = HTMLfile)
HTML(dataSet, row.names = FALSE, digit=5)
HTMLEndFile()

关于html - R : Add CSS color coding in a HTML table,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22604107/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com