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
Copy file name to clipboardExpand all lines: NEWS.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
* The *collapse* article is now published in the Journal of Statistical Software: https://doi.org/10.18637/jss.v116.i01. This article is now the primary citation for academic use of *collapse*. It is also a great reference to quickly and thoroughly understand the package. `citation("collapse")` was also updated in this regard. The APA-style citation is:
4
4
5
-
Krantz, S. (2026). **collapse**: Advanced and fast statistical computing and data transformation in R. *Journal of Statistical Software, 116*(1), 1–38. [https://doi.org/10.18637/jss.v116.i01](https://doi.org/10.18637/jss.v116.i01)
5
+
Krantz, S. (2026). **collapse**: Advanced and fast statistical computing and data transformation in R. *Journal of Statistical Software, 116*(1), 1–38. [https://doi.org/10.18637/jss.v116.i01](https://doi.org/10.18637/jss.v116.i01).
6
6
7
7
8
8
* Performance improvements to `fsum()` and `fmean()` in the non-grouped case through multiple-accumulator SIMD optimizations, particularly benefiting systems without OpenMP support. `fsum()` sees ~2x speedup and `fmean()`~7x speedup on such systems, with smaller but notable gains on systems with OpenMP. Thanks @TylerSagendorf for the implementation and benchmarking (#824, #828, #832, #833).
Copy file name to clipboardExpand all lines: README.md
+20-4Lines changed: 20 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -83,10 +83,10 @@ In addition there are several [vignettes](<https://fastverse.org/collapse/articl
83
83
84
84
The [**collapse** article](https://doi.org/10.18637/jss.v116.i01) is published in the [Journal of Statistical Software](https://www.jstatsoft.org/) (volume 116, issue 1). It is the primary reference for academic use of the package and a concise introduction to its design and capabilities.
85
85
86
-
### Presentation at [useR 2022](https://user2022.r-project.org)
This provides a simple set of examples introducing some important features of *collapse*. It should be easy to follow for readers familiar with R.
@@ -305,7 +305,23 @@ Evaluated and more extensive sets of examples are provided on the [package page]
305
305
306
306
## Citation
307
307
308
-
If *collapse* was instrumental for your research project, please consider citing it using`citation("collapse")`.
308
+
If *collapse* was instrumental for your research project, please consider citing it using:
309
309
310
+
Krantz, S. (2026). **collapse**: Advanced and fast statistical computing and data transformation in R. *Journal of Statistical Software, 116*(1), 1–38. [https://doi.org/10.18637/jss.v116.i01](https://doi.org/10.18637/jss.v116.i01).
311
+
312
+
```
313
+
@article{krantz2026collapse,
314
+
title = {{collapse}: Advanced and Fast Statistical Computing and Data Transformation in {R}},
315
+
author = {Sebastian Krantz},
316
+
journal = {Journal of Statistical Software},
317
+
year = {2026},
318
+
volume = {116},
319
+
number = {1},
320
+
pages = {1--38},
321
+
doi = {10.18637/jss.v116.i01},
322
+
}
323
+
```
324
+
325
+
For a full proper citation also cite the current R package version using `citation("collapse")`.
0 commit comments