R如何在上标之前的括号中获取文本中的上标

时间:2018-09-19 10:55:06

标签: r

例如,当我想将X提升到Y时,我知道如何使用解析或表达式在绘图中获取上标文本

plot(c(1,2),c(1,2),type='n',xlab=expression("example " (m^2)))

按照这些页面的说明,这很好用

How do I include a superscript to texts on a plot on R?

Superscript in R

但是我想有一个标语,上面写着(^ o C),其中^ o是升高的度符号。试图删除m部分总是给我一个错误:

unexpected '^'

2 个答案:

答案 0 :(得分:2)

您可以使用

plot(c(1,2),c(1,2),type='n',xlab=expression("example " (degree~C)))

enter image description here

或者如果度和C之间不需要空格

plot(c(1,2),c(1,2),type='n',xlab=expression("example " (degree*C)))

enter image description here

有关详细信息,请检查

?plotmath

答案 1 :(得分:1)

这是您想要的吗?

   <xs:simpleType name="ClientLevelType">
        <xs:restriction base="xs:string">
            <xs:enumeration value="DIRECT"/>
            <xs:enumeration value="RELATED"/>
        </xs:restriction>
    </xs:simpleType>

enter image description here