First post using Hugo + blogdown

Andrew G. Brown | 2020/07/05

Categories: hugo blogdown R Tags: demonstrations

This is a header

This is some regular text.

# this is some R code (with syntax highlighting)
for (i in 1:10) {
  if (i %% 2 == 0) {
    print(sprintf("this is a string %s", i))
  }
}
## [1] "this is a string 2"
## [1] "this is a string 4"
## [1] "this is a string 6"
## [1] "this is a string 8"
## [1] "this is a string 10"