1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
% Generated by roxygen2 (4.0.1): do not edit by hand
\name{label_bquote}
\alias{label_bquote}
\title{Label facet with 'bquoted' expressions}
\usage{
label_bquote(expr = beta^.(x))
}
\arguments{
\item{expr}{labelling expression to use}
}
\description{
See \code{\link{bquote}} for details on the syntax of the argument. The
label value is x.
}
\examples{
p <- qplot(wt, mpg, data = mtcars)
p + facet_grid(. ~ vs, labeller = label_bquote(alpha ^ .(x)))
p + facet_grid(. ~ vs, labeller = label_bquote(.(x) ^ .(x)))
}
\seealso{
\code{\link{plotmath}}
Other facet labellers: \code{\link{label_both}};
\code{\link{label_parsed}}; \code{\link{label_value}}
}
|