less than 1 minute read

SLGPDisplay

R Markdown

This is an R Markdown document. The goal is to try making a page for my Github webpage. Let us see! ## Making a title

I can include pieces of code:

  set.seed(1)
  y <- runif(1000)
  plot(y)

I can include ggplot2 images:

library(ggplot2)
ggplot()+
  geom_histogram(mapping=aes(x=y, y=after_stat(density)), 
                 col="navy", fill="white",
                 breaks=seq(0, 1, 0.1))+
  geom_hline(yintercept = 1, lty=2, col="grey")+
  theme_bw()

Can I include moving images? So far Javascript is a bit weird with liquid syntax, let’s keep it for later.