---
title: "Static dashboard template file"
author: "DVE 2026"
format: 
  dashboard:
    theme: quartz
---

<!-- this is a dashboard tab.-->

# Graphs

## Row {height="70%"}

### Column

A scatter plot of `r x <- runif(50); base::length(x)` randomly-generated numbers.

{{< lipsum 2 >}}

### Column

```{r}
#| label: fig-scatter
#| fig.width: 5
#| fig.height: 5
#| fig.cap: "A scatterplot of some random data."
plot(x)
```

## Row {height="30%"}

A histogram of `r base::length(x)` randomly-generated numbers.

{{< lipsum 1 >}}

```{r}
#| label: fig-hist
#| fig.width: 5
#| fig.height: 5
#| fig.cap: "A histogram of some random data."
hist(x)
```

A boxplot of `r base::length(x)` randomly-generated numbers.

{{< lipsum 1 >}}

```{r}
#| label: fig-box
#| fig.width: 5
#| fig.height: 5
#| fig.cap: "A boxplot of some random data."
boxplot(x)
```

# Tables

## Column {width="70%"}

A 5-point summary of `r base::length(x)` randomly-generated numbers.

{{< lipsum 2 >}}

```{r}
summary(x)
```

## Column {width="30%"}

### Row {width="70%"}

<!-- a card with text and output.-->

::: card
The range of values from minimum to maximum.

```{r}
range(x)
```
:::

<!-- text and output.-->

### Row {width="30%"}

The first few of `r base::length(x)` randomly-generated numbers.

```{r}
head(x)
```
