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
* fortify.default() accepts data-frame-like objects
`fortify.default()` now accepts a data-frame-like object granted the
object exhibits healthy `dim()`, `colnames()`, and `as.data.frame()`
behaviors. Closes#5390.
* Update snapshot of ggplot(aes(x = x))
* Improve fortify.default() based on Teun's feedback
* Follow style guide a little bit more closely in error messages
(see https://style.tidyverse.org/error-messages.html)
# fortify.default proves a helpful error with class uneval
2
2
3
-
`data` must be a <data.frame>, or an object coercible by `fortify()`, not a <uneval> object.
3
+
`data` must be a <data.frame>, or an object coercible by `fortify()`, or a valid <data.frame>-like object coercible by `as.data.frame()`, not a <uneval> object.
4
4
i Did you accidentally pass `aes()` to the `data` argument?
0 commit comments