I'd like to remove the default "variable" and "value" labels on the axes of ggparcoord plots:
library(GGally)
ggparcoord(data = mtcars,
columns = c(4:5),
groupColumn = 1,
scale = "globalminmax",
alphaLines = 0.2)
I'd also like to remove the default extra spaces on either end of the x-axis. How can I make these custom axis adjustments? Thanks!