Skip to content

Commit

Permalink
Hard code points in chart / plot
Browse files Browse the repository at this point in the history
  • Loading branch information
rgaiacs committed May 29, 2024
1 parent 936d607 commit becfded
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,20 @@ knitr::opts_chunk$set(dev = 'svg')
```

```{r}
plot(runif(10, min=0, max=10), type='l')
# We need a deterministic output here because we are using this for unit testing.
# data <- runif(10, min=0, max=10)
data <- c(
9.0629027,
5.3972500,
0.4133466,
0.3981549,
6.8776325,
7.6101721,
8.9581236
)
plot(data, type='l')
```

## Dependencies
Expand Down

0 comments on commit becfded

Please sign in to comment.