14 lines
No EOL
169 B
Text
14 lines
No EOL
169 B
Text
---
|
|
title: A test post
|
|
---
|
|
|
|
```{r}
|
|
library(ggplot2)
|
|
```
|
|
|
|
```{r}
|
|
vec <- rnorm(n = 10000)
|
|
|
|
ggplot(as.data.frame(vec)) + aes(x=vec) +
|
|
geom_histogram() + theme_minimal()
|
|
``` |