Obligatory First Post

I guess this is my first post. Neat. Most of the first posts I’ve seen are either long-winded manifestos declaring the author to be an expert on everything under the sun, or a record of setting up the blog itself. So keeping in the better of those traditions: This isn’t the first time I’ve tried setting up a blog, but this is the first version that has non-trivial content (this post, at the very least) visible at alexaxthelm. [Read More]

Test Post

This is a subtitle

This is a test post of a markdown document.

–Alex

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