Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
dplyr 1.1.4 source code.tar.gz | 2023-11-16 | 995.1 kB | |
dplyr 1.1.4 source code.zip | 2023-11-16 | 1.3 MB | |
README.md | 2023-11-16 | 764 Bytes | |
Totals: 3 Items | 2.3 MB | 4 |
-
join_by()
now allows its helper functions to be namespaced withdplyr::
, likejoin_by(dplyr::between(x, lower, upper))
(#6838). -
left_join()
and friends now return a specialized error message if they detect that your join would return more rows than dplyr can handle (#6912). -
slice_*()
now throw the correct error if you forget to namen
while also prefixing the call withdplyr::
(#6946). -
dplyr_reconstruct()
's default method has been rewritten to avoid materializing duckplyr queries too early (#6947). -
Updated the
storms
data to include 2022 data (#6937, @steveharoz). -
Updated the
starwars
data to use a new API, because the old one is defunct. There are very minor changes to the data itself (#6938, @steveharoz).