Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
collapse version 2.1.1 source code.tar.gz | 2025-04-14 | 12.7 MB | |
collapse version 2.1.1 source code.zip | 2025-04-14 | 13.0 MB | |
README.md | 2025-04-14 | 384 Bytes | |
Totals: 3 Items | 25.7 MB | 0 |
-
alloc(list(1), 2)
now giveslist(1, 1)
instead oflist(list(1), list(1))
, which can still be generated withalloc(list(1), 2, simplify = FALSE)
. This change also affectsftransform()
/fmutate()
, making, e.g.,fmutate(data, y = list(1))
consistent withdplyr::mutate(data, y = list(1))
. Thanks @MattAFiedler (#753). -
fslice()
now works with sf data frames.