site-perso/posts/test.qmd
2024-10-24 20:47:13 +02:00

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()
```