|
148 | 148 |
|
149 | 149 | ### New Features |
150 | 150 |
|
151 | | -- Function `funique` and `fduplicated` gain an additional argument `fromLast=FALSE` to indicate whether the search should start from the end or beginning [PR#11](https://github.com/2005m/kit/pull/11). |
| 151 | +- Function `funique` and `fduplicated` gain an additional argument `fromLast=FALSE` to indicate whether the search should start from the end or beginning [PR#11](https://github.com/fastverse/kit/pull/11). |
152 | 152 |
|
153 | | -- Functions `pall`, `pany`, `pmean`, `pprod` and `psum` accept `data.frame` as input [PR#15](https://github.com/2005m/kit/pull/15). Please see documentation for more information. |
| 153 | +- Functions `pall`, `pany`, `pmean`, `pprod` and `psum` accept `data.frame` as input [PR#15](https://github.com/fastverse/kit/pull/15). Please see documentation for more information. |
154 | 154 |
|
155 | 155 | - Function `charToFact` is equivalent to to base R `as.factor` but is much quicker and only converts character vector to factor. Note that it is parallelised. For more details and benchmark please see `?kit::charToFact`. |
156 | 156 |
|
157 | 157 | - Function `psort` is experimental and equivalent to to base R `sort` but is only for character vector. It can sort by "C locale" or by "R session locale". For more details and benchmark please see `?kit::psort`. |
158 | 158 |
|
159 | 159 | ### Notes |
160 | 160 |
|
161 | | -- A few OpenMP directives were missing for functions `vswitch` and `nswitch` for character vectors. These have been added in [PR#12](https://github.com/2005m/kit/pull/12). |
| 161 | +- A few OpenMP directives were missing for functions `vswitch` and `nswitch` for character vectors. These have been added in [PR#12](https://github.com/fastverse/kit/pull/12). |
162 | 162 |
|
163 | | -- Function `funique` was not preserving attributes for character, logical and complex vectors/data.frames. Thanks to Sebastian Krantz (@SebKrantz) for bringing that to my attention. This has been fixed in [PR#13](https://github.com/2005m/kit/pull/13). |
| 163 | +- Function `funique` was not preserving attributes for character, logical and complex vectors/data.frames. Thanks to Sebastian Krantz (@SebKrantz) for bringing that to my attention. This has been fixed in [PR#13](https://github.com/fastverse/kit/pull/13). |
164 | 164 |
|
165 | | -- Functions `funique` and `uniqLen` should now be faster for `factor` and `logical` vectors [PR#14](https://github.com/2005m/kit/pull/14). |
| 165 | +- Functions `funique` and `uniqLen` should now be faster for `factor` and `logical` vectors [PR#14](https://github.com/fastverse/kit/pull/14). |
166 | 166 |
|
167 | 167 | # kit 0.0.5 <small>(2020-11-21)</small> |
168 | 168 |
|
169 | 169 | ### New Features |
170 | 170 |
|
171 | 171 | - Function `uniqLen(x)` is equivalent to base R `length(unique(x))` and `uniqueN` in package [data.table](https://CRAN.R-project.org/package=data.table). Function `uniqLen`, implemented in C, supports vectors, `data.frame` and `matrix`. It should be faster than these functions. For more details and benchmark please see `?kit::uniqLen`. |
172 | 172 |
|
173 | | -- Function `vswitch` now supports mixed encoding and gains an additional argument `checkEnc=TRUE`. Thanks to Xianying Tan (@shrektan) for the request and review [PR#7](https://github.com/2005m/kit/pull/7). |
| 173 | +- Function `vswitch` now supports mixed encoding and gains an additional argument `checkEnc=TRUE`. Thanks to Xianying Tan (@shrektan) for the request and review [PR#7](https://github.com/fastverse/kit/pull/7). |
174 | 174 |
|
175 | | -- Function `nswitch` is a nested version of function `vswitch` and also supports mixed encoding. Please see please see `?kit::nswitch` for further details. Thanks to Xianying Tan (@shrektan) for the request and review [PR#10](https://github.com/2005m/kit/pull/10). |
| 175 | +- Function `nswitch` is a nested version of function `vswitch` and also supports mixed encoding. Please see please see `?kit::nswitch` for further details. Thanks to Xianying Tan (@shrektan) for the request and review [PR#10](https://github.com/fastverse/kit/pull/10). |
176 | 176 |
|
177 | 177 | ### Notes |
178 | 178 |
|
|
0 commit comments