Skip to content

gtable 0.3.5

CRAN release: 2024-04-22

gtable 0.3.4

CRAN release: 2023-08-21

  • Fix package doc links

gtable 0.3.3

CRAN release: 2023-03-21

  • Specify minimum rlang version

gtable 0.3.2

CRAN release: 2023-03-17

  • General upkeep

gtable 0.3.1

CRAN release: 2022-09-01

  • Re-documented to fix HTML issues in .Rd.

  • gtable has been re-licensed as MIT (#85).

gtable 0.3.0

CRAN release: 2019-03-25

  • Made a range of internal changes to increase performance of gtable construction, these include:

    • Use more performant data.frame constructor .
    • Treat layout data.frame as list when indexing and modifying it.
    • Use length of widths and heights fields instead of ncol() and nrow() internally.
    • Substitute stopifnot(...) with if(!...) stop().
  • Better documentation, including a new README, a vignette on performance profiling and a pkgdown site.

  • New logo

  • It is now an error to index into a gtable with non-increasing indices.

  • Dimnames are now inherited from the grobs data in gtable_col(), gtable_row(), and gtable_matrix()

  • gtable_trim now works with empty gtables

  • gtable_filter now has an invert argument to remove grops matching a name.

gtable 0.2.0

CRAN release: 2016-02-26

gtable 0.1.2

CRAN release: 2012-12-05

  • print.gtable now prints the z order of the grobs, and it no longer sort the names by z order. Previously, the layout names were sorted by z order, but the grobs weren’t. This resulted in a mismatch between the names and the grobs. It’s better to not sort by z by default, since that doesn’t match how indexing works. The zsort option allows the output to be sorted by z.