Skip to content

Commit 359ddd0

Browse files
committed
dev stuff and fixed link
1 parent 257a64a commit 359ddd0

11 files changed

+25
-24
lines changed

.dev/dev.R

+2
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,5 @@ devtools::check_win_release(here::here())
1515
devtools::check_win_oldrelease(here::here())
1616
# update pkg site
1717
pkgdown::build_site(here::here())
18+
# release to CRAN
19+
devtools::release(here::here())

README.Rmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ devtools::load_all(here::here())
9696

9797
## Examples
9898

99-
The initial versions of the nesting and unnesting functions were shown in a [preprint](https://psyarxiv.com/u8ekc/). Herein is shown some simple applications and the functions' speed/efficiency.
99+
The initial versions of the nesting and unnesting functions were shown in a [preprint](https://osf.io/preprints/psyarxiv/u8ekc/). Herein is shown some simple applications and the functions' speed/efficiency.
100100

101101
```{r, eval=FALSE}
102102
library(tidyfast)

README.md

+18-18
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ remotes::install_github("TysonStanley/tidyfast")
114114
## Examples
115115

116116
The initial versions of the nesting and unnesting functions were shown
117-
in a [preprint](https://psyarxiv.com/u8ekc/). Herein is shown some
118-
simple applications and the functions’ speed/efficiency.
117+
in a [preprint](https://osf.io/preprints/psyarxiv/u8ekc/). Herein is
118+
shown some simple applications and the functions’ speed/efficiency.
119119

120120
``` r
121121
library(tidyfast)
@@ -244,13 +244,13 @@ highlighted below. Notably, the timings are without the `nested1` and
244244
#> # A tibble: 2 × 3
245245
#> expression median mem_alloc
246246
#> <chr> <bch:tm> <bch:byt>
247-
#> 1 dt_nest 1.16ms 2.88MB
248-
#> 2 group_nest 1.94ms 5.12MB
247+
#> 1 dt_nest 1.14ms 2.88MB
248+
#> 2 group_nest 1.91ms 5.12MB
249249
#> # A tibble: 2 × 3
250250
#> expression median mem_alloc
251251
#> <chr> <bch:tm> <bch:byt>
252-
#> 1 dt_unnest 2.22ms 11.84MB
253-
#> 2 unnest 2.38ms 5.96MB
252+
#> 1 dt_unnest 2.08ms 11.84MB
253+
#> 2 unnest 2.33ms 5.96MB
254254

255255
## Pivoting
256256

@@ -325,10 +325,10 @@ But let’s compare some basic speed and efficiency. Because of the
325325
#> # A tibble: 4 × 3
326326
#> expression median mem_alloc
327327
#> <chr> <bch:tm> <bch:byt>
328-
#> 1 dt_pivot_longer 360.92µs 1001.23KB
329-
#> 2 pivot_longer 1.93ms 1.73MB
330-
#> 3 dt_pivot_wider 5.62ms 1.99MB
331-
#> 4 pivot_wider 3.96ms 2.71MB
328+
#> 1 dt_pivot_longer 359.98µs 1001.23KB
329+
#> 2 pivot_longer 1.94ms 1.73MB
330+
#> 3 dt_pivot_wider 5.8ms 1.99MB
331+
#> 4 pivot_wider 3.87ms 2.71MB
332332

333333
### If Else
334334

@@ -377,9 +377,9 @@ built on `data.table::fifelse()`.
377377
#> # A tibble: 3 × 3
378378
#> expression median mem_alloc
379379
#> <chr> <bch:tm> <bch:byt>
380-
#> 1 case_when 44.9ms 72.5MB
381-
#> 2 dt_case_when 10.6ms 19.1MB
382-
#> 3 fifelse 20ms 34.3MB
380+
#> 1 case_when 45.2ms 72.5MB
381+
#> 2 dt_case_when 10.7ms 19.1MB
382+
#> 3 fifelse 20.1ms 34.3MB
383383

384384
## Fill
385385

@@ -492,8 +492,8 @@ marks3 <-
492492
#> # A tibble: 2 × 3
493493
#> expression median mem_alloc
494494
#> <bch:expr> <bch:tm> <bch:byt>
495-
#> 1 tidyr::fill(dplyr::group_by(df3, id), x, y) 15.9ms 46.4MB
496-
#> 2 tidyfast::dt_fill(dt3, x, y, id = list(id)) 12.7ms 17.6MB
495+
#> 1 tidyr::fill(dplyr::group_by(df3, id), x, y) 15.4ms 46.4MB
496+
#> 2 tidyfast::dt_fill(dt3, x, y, id = list(id)) 12.4ms 17.6MB
497497

498498
## Separate
499499

@@ -536,9 +536,9 @@ efficient compared to `tidyr::separate()`.
536536
#> # A tibble: 3 × 3
537537
#> expression median mem_alloc
538538
#> <chr> <bch:tm> <bch:byt>
539-
#> 1 separate 2.76s 3.89GB
540-
#> 2 dt_separate 46.59ms 26.73MB
541-
#> 3 dt_separate-mutable 46.47ms 26.72MB
539+
#> 1 separate 2.79s 3.89GB
540+
#> 2 dt_separate 47.31ms 26.73MB
541+
#> 3 dt_separate-mutable 46.85ms 26.72MB
542542

543543
## Count and Uncount
544544

cran-comments.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
## Test environments
22

3-
* local OS X install, R 4.1.0
4-
* ubuntu 14.04 (on travis-ci)
5-
* win-builder (devel and release)
6-
* r-hub: Ubuntu Linux 16.04 LTS, R-release, GCC; Fedora Linux, R-devel, clang, gfortran; Debian Linux, R-devel, GCC ASAN/UBSAN; Windows Server 2008 R2 SP1, R-devel, 32/64 bit
3+
* local OS X install (release)
4+
* GitHub actions (windows, MacOS, ubuntu)
5+
* win-builder (devel, release, old release)
76

87
## R CMD check results
98

109
0 errors | 0 warnings | 0 note
1110

12-
Updating maintainer email and minor updates.
11+
Updating maintainer email and minor updates (including fix for the soon to be released data.table 1.15.0).

man/figures/README-third_pivot-1.png

498 Bytes
Loading

man/figures/README-third_pivot-2.png

-1.52 KB
Loading
1.18 KB
Loading
-3.44 KB
Loading
397 Bytes
Loading
713 Bytes
Loading
-7.79 KB
Loading

0 commit comments

Comments
 (0)