--- title: "Testing 1,2" author: "Blake" date: 2020-08-01 categories: ["R"] tags: ["R Markdown", "plot", "test"] ---

Hello World?

Making sure we can get this thing off the ground!

par(mar = c(0, 1, 0, 1))
pie(
  c(280, 60, 20),
  c('Sky', 'Sunny side of pyramid', 'Shady side of pyramid'),
  col = c('#0292D8', '#F7EA39', '#C4B632'),
  init.angle = -50, border = NA
)
A fancy pie chart.

Figure 1: A fancy pie chart.