如何获取R table1包units()或label()属性中的上标?

问题描述 投票:0回答:1

我正在使用 R 中的

table1
包制作一张表格。我的一个变量以 mm^3 为单位进行测量。当我将此变量的单位指定为
table1()
时,我无法使用
units(df$volume) <- expression("mm"^"3")
函数获得上标。该表输出不带上标,并将参数粘贴到 expression() 函数中。有没有办法将其显示为上标?谢谢

output of table1(~volume, df)

r html-table
1个回答
0
投票

我不确定这是最好的解决方案,但也许这样的东西可以工作?

units(df$volume) <- "mmᶾ"

test1

或者,

units(df$volume) <- "mmᶟ"

test2

这些特殊字符取自 https://graphemica.com/%E1%B6%BEhttps://graphemica.com/%E1%B5%8C

© www.soinside.com 2019 - 2024. All rights reserved.