在我所在大学的一个数据科学项目中,我们被要求制作一个决策树来模拟哪些客户可能会响应或不响应活动。任务的要求之一是制作混淆矩阵,我将其转换为数据框。这是我生成的数据框。
confusionMatrixCARTDecisionTree <- data.frame("Number Predicted to Not Subscribe" =
c(36006, 542), "Number Predicted to Subscribe" = c(3554, 1086),
row.names = c("Number of Individuals that Subscribed",
"Number of Individuals that didn't Subscribe"));
然后,我使用此代码将其转换为格式表。
formattableConfusionMatrixCARTDecisionTree <- formattable(
confusionMatrixCARTDecisionTree, align = "c",
list("Predicted Number not Subscribing" = color_tile("white", "yellow"),
"Predicted Number Subscribing" = color_tile("yellow", "white")));
然后是我在这里找到的一个函数,https://github.com/renkun-ken/formattable/issues/26,将格式表放入 pdf 报告中。但是,我现在要做的是将字体系列更改为混淆矩阵的 CMU Serif,使其与 LaTeX 文件一致。我已经弄清楚如何更改列的字体,如下所示:
formattableConfusionMatrixCARTDecisionTree <-
formattable(confusionMatrixCARTDecisionTree, list("Predicted Number not Subscribing" =
formatter("span", style=style("font-family" = "CMU Serif"))));
但是,我已阅读此处的文档https://cran.r-project.org/web/packages/formattable/formattable.pdf并且我已经在线搜索但我找不到更改标题字体或行名称。如果有人对此有解决方案,我将不胜感激!如果有人知道一些可以改变整个表格字体系列的代码,我也会非常高兴。
注意:我确实了解此处询问了与更改标题外观有关的问题How to change appearance of table header row with R formattable package,但是,这没有得到解答,也没有解决更改字体系列的问题。