Skip to content

Instantly share code, notes, and snippets.

@stephenturner
Last active December 20, 2015 10:48
Show Gist options
  • Save stephenturner/6117979 to your computer and use it in GitHub Desktop.
Save stephenturner/6117979 to your computer and use it in GitHub Desktop.

Using ```r

# This is a comment
a <- 1:3
b <- c("a", "b", "c")
data.frame(a, b)

Using ```{r}

# This is a comment
a <- 1:3
b <- c("a", "b", "c")
data.frame(a, b)

Using ```rsplus

# This is a comment
a <- 1:3
b <- c("a", "b", "c")
data.frame(a, b)

Using ```S

# This is a comment
a <- 1:3
b <- c("a", "b", "c")
data.frame(a, b)

Using ```coffee

# This is a comment
a <- 1:3
b <- c("a", "b", "c")
data.frame(a, b)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment