Code
library(ggplot2)
data(airquality)
ggplot(airquality, aes(Temp, Ozone)) +
geom_point() +
geom_smooth(method = "loess"
)
Quarto documentation and gallery can be found on their website.
Below are some examples of the features that were added to RMarkdown notebooks.
Figure 1 explores the impact of temperature on ozone level.
library(ggplot2)
data(airquality)
ggplot(airquality, aes(Temp, Ozone)) +
geom_point() +
geom_smooth(method = "loess"
)
Quarto has native support for embedding Mermaid and Graphviz diagrams. This enables you to create flowcharts, sequence diagrams, state diagrams, gantt charts, and more using a plain text syntax inspired by markdown: