Introduction

Hi! This is my document to R Markdown. I can do italics and bold, and I will include a link of my favorite singer [link]{https://www.youtube.com/results?search_query=justin+bieber+daisies}

Include r Code

# load package and data
  library(ggplot2)
  data(mpg, package="ggplot2")
  # mpg <- read.csv("http://goo.gl/uEeRGu")
 
 
  # Scatterplot
  theme_set(theme_bw())  # pre-set the bw theme.
  g <- ggplot(mpg, aes(cty, hwy))
  g + geom_jitter(width = .5, size=1) +
    labs(subtitle="mpg: city vs highway mileage",
         y="hwy",
         x="cty",
         title="Jittered Points")

Subheadings

Unordered lists:

  • first item
  • second item Ordered lists:
  1. first
  2. second

Image

We can insert an image: alt text