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)))