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
This results in a comparable version to the base-R version.
As for the second example, the Tidy version can be simplified to the following since you are already using the magrittr package. This is only slightly more complicated than the base-R version and not near as complicated as the current example.
x <- c(5,12,13,1)
x %>% extract(. > 8)
The text was updated successfully, but these errors were encountered:
I see two problems in the section titled Banning the $-sign and brackets (https://github.com/matloff/TidyverseSkeptic#case-study--tidys-banning-the--sign-and-brackets).
In the first example, you include an extra assignment in the Tidy version that is not in the base-R version. I would change the Tidy version to this:
This results in a comparable version to the base-R version.
As for the second example, the Tidy version can be simplified to the following since you are already using the
magrittr
package. This is only slightly more complicated than the base-R version and not near as complicated as the current example.The text was updated successfully, but these errors were encountered: