Test R Post

This is some plain text.

myplot <- ggplot2::ggplot(
  data = mtcars,
  mapping = ggplot2::aes(
    x = wt,
    y = mpg,
    color = factor(cyl)
  )
) +
  ggplot2::geom_point() +
  ggplot2::theme_minimal() +
  ggplot2::labs(
    title = "A scatterplot of mtcars",
    subtitle = "Look, plotting works!"
  )
myplot

Rstats  test  post 

See also