Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
建立了一个汇总表,但行组的标签没有显示出来。
args(data) summary1 <- list("Gender"= list("Female" =~qwraps2::n_perc0(Sex==0, na_rm=TRUE)) table1 <- summary_table(data, summary1)
我的表如下所示: table1:
如何让“性别”组名称显示在表格中?
看起来您正在通过双击table1“环境”选项卡中的 RStuido 来查看表格。显示符合预期。对象的结构qwraps2_summary_table是一个字符矩阵。在 RStudio 内外,您可以通过View(table1).
table1
qwraps2_summary_table
View(table1)
要查看渲染良好的 html,您需要将 .Rmd 编织到 html。或者,在 RStuido 中,您可以使用“R Notebook”。R Notebook 中一个简单示例的屏幕截图如下:
这可能与你如何“展示”你的桌子有关(你没有写任何关于你如何得到它的东西)。当我在编辑模式下在 rmarkdown 中使用 qwraps 时。当我只选择表格(在您的情况下为 table1)并按 ctrl + enter 时,我会得到您要求的结果。如果我使用 kable(table1) 这将删除此标签。
我认为 print() 函数识别出 qwrap 表并用组名打印它。
如果您需要更多帮助,请询问一个可重复性最低的示例。