Commit 3bb2e76
left aligned, adaptive, rolling max (#7264)
* rolling max, adaptive left
* frollmax exact, buggy fast, no fast adaptive
* frollmax fast fixing bugs
* frollmax man to fix CRAN check
* frollmax fast adaptive non NA, dev
* froll docs, adaptive left
* no frollmax fast adaptive
* frollmax adaptive exact NAs handling
* PR summary in news
* align happens in one place, less duplicated code
* push up even more to frollR to reduce code duplication
* frollapply push up align arg and early stopping up
* typo fix in NEWS.md
Co-authored-by: Marco Colombo <[email protected]>
* keep R agnostic C code in froll.c, yet deduplicated
* new functionality unit tests
* doc further improving
* tests and NEWS
* remove unnecessary new line to reduce diff
* Many wording corrections by Ben
Co-authored-by: Benjamin Schwendinger <[email protected]>
* function args, suggested by Ivan
* Add wording improvements by Ivan
Co-authored-by: aitap <[email protected]>
* follow up improvements added to TODO file
---------
Co-authored-by: Marco Colombo <[email protected]>
Co-authored-by: Benjamin Schwendinger <[email protected]>
Co-authored-by: aitap <[email protected]>
* partial window support for rolling functions
* adaptive and partial added to frollapply()
* NA support in frollmax
* frollmax adaptive speed up by early NA detection
* rolling functions support for Inf/-Inf (#9)
* Deduplicate args handling in rolling functions
* give.names argument for rolling functions
* adaptive && partial support, helper functions
* also update function call
* frollmax PRs reviews feedback follow up (#13)
* catf rather than cat
* malloc and free as per feedback
* remove R < 3.4.0 related code
* rm TODO file
* elaborate on a breaking change
* fix compiler notes
* update timings and add NOTE
* partial2adaptive does not wrap in a list when not needed
* forget to remove wrapping into list, amend error for different types
* compile with -O3 and use performance mode rather than balanced
* fix codecov
* atime tests for froll*
* explain tryCatch
* typo fix
Co-authored-by: Marco Colombo <[email protected]>
* reverting atime test cases as there is nothing to compare to from the past
* address feedback from Ben
* indent code block to keep the right HTML structure
* Apply suggestions from Michael's code review
Co-authored-by: Michael Chirico <[email protected]>
* proper indentation in NEWS file for long entry
* fix typo in NEWS
Co-authored-by: Marco Colombo <[email protected]>
---------
Co-authored-by: Marco Colombo <[email protected]>
Co-authored-by: Benjamin Schwendinger <[email protected]>
Co-authored-by: aitap <[email protected]>
Co-authored-by: Toby Dylan Hocking <[email protected]>
Co-authored-by: Michael Chirico <[email protected]>1 parent 7920cad commit 3bb2e76
File tree
11 files changed
+1804
-733
lines changed- R
- inst/tests
- man
- src
11 files changed
+1804
-733
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
54 | 54 | | |
55 | 55 | | |
56 | 56 | | |
| 57 | + | |
57 | 58 | | |
58 | 59 | | |
59 | 60 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
7 | 19 | | |
8 | 20 | | |
9 | 21 | | |
| |||
75 | 87 | | |
76 | 88 | | |
77 | 89 | | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
78 | 130 | | |
79 | 131 | | |
80 | 132 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
2 | | - | |
3 | | - | |
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
4 | 72 | | |
5 | | - | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
6 | 107 | | |
7 | 108 | | |
8 | 109 | | |
9 | | - | |
10 | | - | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
11 | 127 | | |
12 | | - | |
13 | | - | |
| 128 | + | |
| 129 | + | |
14 | 130 | | |
15 | | - | |
| 131 | + | |
| 132 | + | |
16 | 133 | | |
17 | | - | |
18 | 134 | | |
19 | | - | |
20 | | - | |
| 135 | + | |
21 | 136 | | |
0 commit comments