Back to Article
use_case1.qmd
Download Source

This is a use case showing a result.

In [2]:
dat <- data.frame(
  a = runif(n = 100, min = 0, max = 5), 
  b = runif(n = 10, min = 0, max = 5)
)
ggplot2::ggplot(data = dat) +
  ggplot2::geom_point(mapping = ggplot2::aes(x = a, y = b))