使用 R 中的 gt 包在 table 的标题区域添加图像

Add image on title area of a table with gt package in R

这是我的 table:

library(gt)
gt(mtcars)

我只想在这个 table 的左上角或右上角包含一个 png 图像 () 文件和一个本地 png 文件。在标题区。

我只能做到这一点。

 gt(mtcars) %>% tab_header(title = md("⚽**2014 - 2019 Salary and Playoff Appearances**⚽"))

但我不知道如何在标题区域

中包含 png 图像

有什么帮助吗?

给你:

gt(mtcars) %>% tab_header(title = md("<img src='https://i.stack.imgur.com/UyMtM.png' style='height:30px;'> **2014 - 2019 Salary and Playoff Appearances**&#x26BD;"))