Skip to contents

This function plots harmonious layouts, using transparency to overlay multiple similar layouts at a time. It is meant to give an overview of layout options and to home in on a subset of candidates for a project.

Usage

plot_layouts(x)

Arguments

x

subset of layouts

Value

Returns a ggplot.

Examples

plot_layouts(layouts)


layouts |>
  subset(
    layouts$page_ratio %in% c("fourth", "fifth") &
      dplyr::between(ratios[layouts$text_ratio], 1.2, 1.6) &
      dplyr::between(layouts$text_pct, 0.5, 0.75)
  ) |>
  plot_layouts()