- Quarto Gallery
- McAnouil’s Up-to-data Quarto Links
- PositPBC
- Dan macKinlay’s Examples and Comments
- posit::conf 2023: Quarto with R & RStudio
- Dashboards with Shiny for R
- Presentations
- Websites
Also python alternatives.
- https://quarto.org/
- https://quarto.org/docs/websites/.
- https://plotnine.org/ for Python version of ggplot.
- top bar
- _quarto.yml
- index.qmd
- about.qmd
- navigation buttons on far right (see YAML)
- second bar
- title (see YAML)
- first level headings (
#
) map onto tabs in second bar
- body
- second level headings (
##
) map onto majorrows
(default) orcolumns
via YAML - third level headings (
###
) map onto minorcolumns
(default) orrows
- titles in magic comments inside code chunks (
#| title: Blah
) - alter sizes for column
{width="70%"}
and/or row{height="60%"}
- tabsets within major rows via
{.tabset}
- second level headings (
- component fill
{.fill}
(default) or flow{.flow}
(markdown default) - scrolling sub to dashboard (
scrolling: true
) - orientation and scrolling can be set at dashboard or page component level
## Blah {orientation="rows"}
## Blah {orientation="columns" scrolling="true"}
- cards placed in page components (rows or columns)
- code chunks or markdowns that have output create cards
- manually create with fench div paragraph from
::: {.card title="Title"}
through:::
#| output: false
hide code chunk- multiple outputs in code chunk end up in one card
- use
#| layout-ncol: 2
to layout plots in columns
- use
- value boxes
- use Bootstrap icons (https://icons.getbootstrap.com)
- default colors can be changed
- expand button
- see componentValue-r.qmd
# {.sidebar}
Main Sidebar.
# Scatter
## {.sidebar}
Sidebar for Scatter.
##
YAML is its own language. It is situated between lines with three dashes (---
). Components can be on same line (format: dashbard
) or indented.
title: "Pages"
cat("title=", "Blah", myvar)
<more code>
with orientation and nav-buttons
format:
dashboard:
orientation: columns
nav-buttons: [github]
github: https://github.com/byandell/olympicdash
logo (can be sub to dashboard
)
logo: images/olympics-logo.svg
logo-alt: Olympics logo with multicolored circles.
navigation buttons
format:
dashboard:
logo: images/beetle.png
nav-buttons:
- icon: github
href: https://github.com/quarto-dev/quarto-cli
aria-label: GitHub
- icon: linkedin
href: https://www.linkedin.com/company/posit-software/
aria-label: LinkedIn
- icon: youtube
href: https://youtube.com]
aria-label: YouTube