Kirill Müller
Kirill Müller
Thanks, this is very accessible! I have a script to do the bulk rename ops, I applied it to the current text.
Thanks, this is a good addition. I noticed two things: - I'm using bold face (two-star emphasis) in exceptional situations only, perhaps once per article at most. If really necessary,...
Need to review with `git diff --word-diff` .
Split into two commits.
Interesting. I'm avoiding too many references to other articles inside the text because I want the reader to stay with me and not jump around. That's why I strive to...
@copilot: Resolve conflicts.
Descoping.
Yeah, my `seq_numeric()` would special-case for the `n == 0` edge case.
`seq(1, x)` is much faster, as the benchmark shows. Because the natural sequence is the default argument for many input functions, I suspect that this case is pretty frequent and...
🤦 🤦 You're right, of course. But the test isn't representative either: ``` r bench::mark( sum(seq(1, 10000000, 1)), sum(as.numeric(rlang::seq2(1, 10000000))), sum(as.numeric(seq_len(10000000))) ) #> Warning: Some expressions had a GC in...