# I write my code here
# and I see the plot underneath.
library(ggplot2)
library(dplyr)
palmerpenguins::penguins %>%
ggplot2::ggplot(aes(x = bill_length_mm, y = bill_depth_mm)) +
geom_point()
# I write my code here
# and I see the plot underneath.
library(ggplot2)
library(dplyr)
palmerpenguins::penguins %>%
ggplot2::ggplot(aes(x = bill_length_mm, y = bill_depth_mm)) +
geom_point()
Syntax highlighting
Executable code
Reproducibility
Workflow
Control
You can keep using blogdown, distill, etc., to create your blog.
R Markdown is not going away. Rest assured that we will still actively maintain it.
Yihui Xie, With Quarto Coming, is R Markdown Going Away? No.