I think the facets argument in facet_grid() has been informally soft-deprecated for about 5 years now.
|
# `facets` is soft-deprecated and renamed to `rows` |
|
if (!is.null(facets)) { |
|
rows <- facets |
|
} |
Should the deprecation be more formalised with the {lifecycle} system, through deprecate_warn()?
I think the
facetsargument infacet_grid()has been informally soft-deprecated for about 5 years now.ggplot2/R/facet-grid-.r
Lines 116 to 119 in 37d9e8c
Should the deprecation be more formalised with the {lifecycle} system, through
deprecate_warn()?