tests/testthat/test-position-stack.R

context("position_stack")

test_that("data is sorted prior to stacking", {
  df <- data.frame(
    x = rep(c(1:10), 3),
    var = rep(c("a", "b", "c"), 10),
    y = round(runif(30, 1, 5))
  )
  p <- ggplot(df, aes(x = x, y = y, fill = var)) +
    geom_area(position = "stack")
  dat <- layer_data(p)
  expect_true(all(dat$group == 3:1))
})

test_that("negative and positive values are handled separately", {
  df <- data.frame(
    x = c(1,1,1,2,2),
    g = c(1,2,3,1,2),
    y = c(1,-1,1,2,-3)
  )
  p <- ggplot(df, aes(x, y, fill = factor(g))) + geom_col()
  dat <- layer_data(p)

  expect_equal(dat$ymin[dat$x == 1], c(-1, 0, 1))
  expect_equal(dat$ymax[dat$x == 1], c(0, 1, 2))

  expect_equal(dat$ymin[dat$x == 2], c(-3, 0))
  expect_equal(dat$ymax[dat$x == 2], c(0, 2))
})

test_that("can request reverse stacking", {
  df <- data.frame(
    y = c(-2, 2, -1, 1),
    g = c("a", "a", "b", "b")
  )
  p <- ggplot(df, aes(1, y, fill = g)) +
    geom_col(position = position_stack(reverse = TRUE))
  dat <- layer_data(p)
  expect_equal(dat$ymin, c(-2, -3, 0, 2))
})

test_that("data with no extent is stacked correctly", {
  df = data.frame(
    x = c(1, 1),
    y = c(-40, -75),
    group = letters[1:2]
  )
  base <- ggplot(df, aes(x, y, group = group))
  p0 <- base + geom_text(aes(label = y), position = position_stack(vjust = 0))
  p1 <- base + geom_text(aes(label = y), position = position_stack(vjust = 1))

  expect_equal(layer_data(p0)$y, c(-75, -115))
  expect_equal(layer_data(p1)$y, c(0, -75))
})
SahaRahul/ggplot2 documentation built on May 17, 2019, 1:46 p.m.