Add an ggplot plot inside the body of the email with this helper function.
The ggplot2
plot object.
The width of the output plot in inches.
The height of the output plot in inches.
Text description of image passed to the alt
attribute inside of
the image (<img>
) tag for use when image loading is disabled and on
screen readers. Defaults to the ggplot2
plot object's title, if exists.
Override by passing a custom character string or ""
for no text.
The alignment to be used for the image. If not "inline"
, the
image will appear in its own block, i.e. there will not be text to the left
or right of it.
The float value to be used for the image. If not "none"
, text
will flow around the image, and the align
argument will be ignored.
An HTML fragment that can be placed inside the message body wherever the plot image should appear.
library(ggplot2)
# Create a ggplot plot
plot <-
ggplot(
data = mtcars,
aes(x = disp, y = hp,
color = wt, size = mpg)) +
geom_point()
# Create an HTML fragment that
# contains an the ggplot as an
# embedded plot
plot_html <-
add_ggplot(plot_object = plot)
# Include the plot in the email
# message body by simply referencing
# the `plot_html` object
email <-
compose_email(
body = md(
c(
"Hello!
Here is a plot that will change
the way you look at cars forever.\n",
plot_html,
"Let me know what you think
about it!"
)
)
)
if (interactive()) email