You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To my understanding, ggplot2 use to have a nullGrob() function itself. At some point, {grid} also introduced a homonymous function, forcing ggplot2 to introduce zeroGrob() to avoid a namespace conflict (7f12f21). However, I think grid::nullGrob() does the same thing as ggplot2::zeroGrob(), namely: draw nothing. In principle, we could just use grid::nullGrob() instead.
The text was updated successfully, but these errors were encountered:
To my understanding, ggplot2 use to have a
nullGrob()
function itself. At some point, {grid} also introduced a homonymous function, forcing ggplot2 to introducezeroGrob()
to avoid a namespace conflict (7f12f21). However, I thinkgrid::nullGrob()
does the same thing asggplot2::zeroGrob()
, namely: draw nothing. In principle, we could just usegrid::nullGrob()
instead.The text was updated successfully, but these errors were encountered: