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 72 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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
|
KernSmooth/src:
add simple Makefile.
add LINPACK routines dgefa.f and dgesl.f
alter blkest.f and cp.f so that the last argument of dqrsl (info)
is a variable not a constant as it is used on output.
KernSmooth/data:
Add dump of `geyser' example from Azzalini & Bowman.
KernSmooth/R:
Alter .First.lib to R form.
KernSmooth/man:
Quote many S objects.
Create files via Sd2Rd.
Add data(geyser) as required.
Version 2.22-5
==============
R 1.2.0 and later require BLAS_LIBS set.
Add help for geyser (copied from package MASS).
Version 2.22-7
==============
cp.f was calling dqrdc incorrectly.
Version 2.22-8
==============
Use * for array bounds in Fortran
Version 2.22-9
==============
Remove dataset geyser and get it from MASS
Use 0.0d0 not dble(0).
Version 2.22-10
===============
Add namespace
Version 2.22-11
===============
Add .onUnload, require R 1.8.0.
Remove some unused assignments, use sort.list rather than order.
Version 2.22-12
===============
Update Matt Wand's URL.
Correct default values in help files (and descriptions thereof)
Version 2.22-13
===============
Version for 1.9.0 with re-organized packages.
Version 2.22-14
===============
Use Suggests: in DESCRIPTION
Version 2.22-15
===============
Don't use <<see below>> in help files.
Version 2.22-16
===============
Use stop() for errors. Add .pot file.
Use registration mechanism, only usable after svn r36365
Version 2.22-18
===============
Use FLIBS in PKG_LIBS, in case needed.
Version 2.22-20
===============
Use packageStartupMessage() not cat() in startup message
Version 2.22-21
===============
Remove unused var in cp.f and .C() call.
Install LICENCE file
Version 2.22-22
===============
Add a few more details to the help files.
Version 2.23-1
==============
Use integer constants.
Protection against small bandwidths and related changes from Matt Wand
Scale kernel weights to sum to 1 (matters when bandwidth is small compared
to the grid spacing).
Version 2.23-2
==============
Add German translation.
Version 2.23-3
==============
Tweaks to dpih.Rd from Matt Wand.
Version 2.23-4
==============
Correction to linbin2D from Kjell Konis (output was transposed).
Revert dpill to 2.22 version at Matt Wand's request.
Version 2.23-5
==============
Error in bkfe if gridsize was a power of 2, reported by Barry Rowlingson.
Version 2.23-6
==============
Analogous change to bkde, needed if gridsize was a power of 2 for some
'x' where 'range.x' is given (and small).
Version 2.23-7
==============
Typo in dpik reported by Tanya Tang.
Version 2.23-8
==============
Add Polish translations.
Version 2.23-9
==============
Change LICENCE to Licence.note
Use Authors@R.
Version 2.23-10
===============
Add Korean translations.
Force byte-compiling (for consistency with installation from R tarball).
Version 2.23-11
===============
Add French translations.
Bug fix in linbin(truncate = FALSE)
Version 2.23-12
===============
Update Polish translations.
Version 2.23-13
===============
Changes to reduce noise from R CMD check --as-cran:
put message in .onAttach and remove orig.
Version 2.23-14
===============
Removed unused assignments.
Improve DESCRIPTION file.
Update ko translations.
Version 2.23-15
===============
Correct imports in NAMESPACE file.
Version 2.23-16
===============
Incude <stddef.h> in src/init.c.
Add credit for LINPACK routines.
Version 2.23-17
===============
Update translations and PORTING
Version 2.23-18
===============
src/dgedi.f: remove incorrect copyright in header.
Add Note field in DESCRIPTION
Version 2.23-19
===============
[Unreleased]
src/rlbin.f: issue in locpoly() reported by Peter Dalgaard
tests/locpoly.R: regression test for the above.
Version 2.23-20
===============
R/all.R: add sanity check for 'canonical' argument.
man/bkde.Rd: stress the above.
Update fr translations.
Version 2.23-21
===============
typo in bkde
Expand seq(length=).
Version 2.23-22
===============
src/Makevars does not need FLIBS as there is Fortran code in the package.
(And macOS now warns on duplication.)
Version 2.23-23
===============
(Not released to CRAN)
Declare a variable in cp.f to pacify Intel ifx.
Version 2.23-24
===============
Use DO..END DO in Fortran code.
Update de translations.
Version 2.23-25
===============
[Unreleased]
locpoly() allowed multiple bandwidths but did not check <= 0 correctly.
Version 2.23-26
===============
Change maintainer email address.
|