Skip to content

Instantly share code, notes, and snippets.

@ramnathv
Created August 29, 2013 20:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ramnathv/58233ee63a581847411c to your computer and use it in GitHub Desktop.
Save ramnathv/58233ee63a581847411c to your computer and use it in GitHub Desktop.
Chunk Output
========================================================
Outside a chunk.
```{r chunk1, results='hide'}
cat('Inside a chunk\n\n')
for (i in 1:3) {
cat('* Inside loop #', i, '\n')
}
cat('Outside a loop, but still inside the first chunk')
```
```{r ref.label = 'chunk1', results = 'asis', echo = F}
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment