theme_pcp {ggpcp}R Documentation

Theme for parallel coordinate plots

Description

The function theme_pcp provides a wrapper for thematic choices suitable for parallel coordinate plots. In particular, the labeling of axes in parallel coordinate plot is quite un-informative. In the default theme axes labels are based on variable names derived during the data wrangling step.

Usage

theme_pcp(base_size = 11, base_family = "")

Arguments

base_size

base font size, given in pts.

base_family

base font family

Value

A ggplot2 theme object based on ggplot2::theme_bw() without y axis and x axes labels.

See Also

ggplot2::theme_bw()

Examples

library(ggplot2)
gg <- iris |>
  pcp_select(tidyselect::everything()) |>
  pcp_scale() |>
  pcp_arrange() |>
  ggplot(aes_pcp(colour = Species)) +
    geom_pcp()

# plot with the default ggplot2 theme
gg
# better:
gg + theme_pcp()

[Package ggpcp version 0.2.0 Index]