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.
我想要以下内容,例如在 ggplot2 标签中:
ylab(expression((hat(beta)^(2))(x)))
但 . 周围没有括号hat(beta)^(2)。但是,如果我删除括号,则(x)上升到指数。
hat(beta)^(2)
(x)
这些表达式中有分组吗?还是看不见的括号?
这是你想要的吗?
ylab(expression(hat(beta)^(2)*(x)))