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 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823
|
2009-11-18 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 0.5-0_1
* tests/mc-strict.R: don't use the longmemo example for now.
2009-11-11 Martin Maechler <maechler@stat.math.ethz.ch>
* tests/glmrob-1.R: add moe explicit glmrob() tests;
including the simple puzzling 1-outlier problem.
* R/glmrobMqle.R: do use getRversion() !
2009-06-27 Martin Maechler <maechler@stat.math.ethz.ch>
* data/wagnerGrowth.rda: add the "wagner data" (continuous + categorical)
* man/wagnerGrowth.Rd: ditto
2009-06-05 Martin Maechler <maechler@stat.math.ethz.ch>
* R/glmrob.R (glmrob): add the option start = "lmrobMM", using
a *robust* start for {essentially} glm().
* man/glmrob.Rd: add an example for that <<<<<______________ FIXME
2009-06-04 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 0.5-0; *not* released
* tests/glmrob-1.R: more glmrob() examples
2009-06-03 Martin Maechler <maechler@stat.math.ethz.ch>
* R/glmrobMqle.R (mFormat): make 'trace=TRUE' also depend on
getOption("digits").
* R/glmrobMqle.R, R/glmrob.R: changes from Andreas Ruckstuhl,
to support family = "Gamma".
Unfortunately, these at first also very slightly change binomial,
poisson. ==> few small changes by MM.
* R/glmrob.R (glmrob): allow y (in "y ~ ...") to be *factor*
2009-01-17 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 0.4-5 : bug-fixing release
* tests/tmcd.R: add a regression test for the bug
* src/rffastmcd.f: rfrdraw() w/o 'seed'
* src/rfltsreg.f: ditto
2009-01-10 Martin Maechler <maechler@stat.math.ethz.ch>
* src/rf-common.f (rfrangen): drop unused 'seed' argument
(rfrdraw): ditto
* src/rffastmcd.f: get rid of TABs (gfortran -Wall complains)
* man/exAM.Rd, man/possumDiv.Rd, ...: Rd_parse fixes
2008-11-28 Martin Maechler <maechler@stat.math.ethz.ch>
* R/OGK.R (covOGK): also return n.iter and weight.fn.
* man/covOGK.Rd: note about the "silly" weight.fn
2008-10-15 Martin Maechler <maechler@stat.math.ethz.ch>
* R/lmrob.MM.R (lmrob.S): fix error message s/larger/smaller/
thanks to Keith Ponting.
2008-10-01 Martin Maechler <maechler@stat.math.ethz.ch>
* src/wgt_himed_templ.h: fix leading comment
2008-08-29 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 0.4-3 for CRAN release
* tests/mc-strict.R: define 'isMac' and tweak the tests;
thanks to reports from Rory Winston.
2008-08-09 Martin Maechler <maechler@stat.math.ethz.ch>
* NAMESPACE: import stats::cov {since others hide it!}
2008-08-05 Martin Maechler <maechler@stat.math.ethz.ch>
* R/huber.R (huberM): replace `s' by 's' in errors and warnings.
* R/qnsn.R, R/plot.lmrob.R, R/ltsReg.R, R/ltsPlot.R: ditto
2008-08-04 Martin Maechler <maechler@stat.math.ethz.ch>, really from
Valentin Todorov <valentin.todorov@chello.at>
* R/ltsReg.R (ltReg.default): if(mcd) call covMcd() with correct alpha
* R/covMcd.R (covMcd): drop (n-1)/n correction, as cov.wt()
contains that per default (in R, not in S-plus!).
* R/tolEllipse.R (tolEllipsePlot): no text() for id.n == 0
* DESCRIPTION (Version): 0.4-2 released to CRAN.
2008-08-04 Martin Maechler <maechler@stat.math.ethz.ch>
* src/wgt_himed.c: renamed wgt_himed.c_templ to
* wgt_himed_templ.h:
2008-08-02 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 0.4-1 ready for release to CRAN.
* R/ltsReg.R (ltsReg.default): don't add artificial "Y" y-name
* src/lmrob.c (rwls): first call to sum_rho() is only needed for
tracing (was used for lambda iterations).
* R/glmrob.R (glmrob),
* R/glmrobMqle.R (glmrobMqle): introduce 'trace' option to trace
the robustness iterations {*not* part of control: does *not*
influence result}
* man/CrohnD.Rd: new data example robust poisson regression
* data/CrohnD.rda:
2008-01-25 Martin Maechler <maechler@stat.math.ethz.ch>
* R/covMcd.R (.fastmcd): fix nsamp="exact" to use "all"
* src/rffastmcd.f: krep=0 <==> nsamp="exact" : all := TRUE;
new argument i_trace; and use intpr() and dblepr()
* man/covMcd.Rd: pass 'trace' to .fastmcd() and Fortran
* src/rf-common.f (rfncomb): give "error" message for very
large 'comb'
* tests/tmcd.R: add test for nsmap = "exact"
2008-01-05 Martin Maechler <maechler@stat.math.ethz.ch>
* man/ambientNOxCH.Rd: new data set from Ren Locher,
* data/ambientNOxCH.rda: showing some lmrob-nonconvergence
2007-12-22 Martin Maechler <maechler@stat.math.ethz.ch>
* src/lmrob.c (rwls): if (trace_lev >= 3) show beta vector.
2007-12-13 Martin Maechler <maechler@stat.math.ethz.ch>
* man/summarizeRobWeights.Rd: add toy example
* R/lmrob.R (summarizeRobWeights): cosmetic change; notably
finishing line when weights were practically 0/1.
* tests/MCD-specials.Rout.save {adapt from change of 11-07}
2007-11-07 Martin Maechler <maechler@stat.math.ethz.ch>
* R/covMcd.R (covMcd): if we have singularity, also say so, even
if trace is FALSE.
* R/covMcd.R (singularityMsg): for "on.hyperplane", concatenate
long coefficient vector.
2007-10-25 Martin Maechler <maechler@stat.math.ethz.ch>
* man/pulpfiber.Rd: New data set (p=8 = 4 + 4)
* data/pulpfiber.tab: from "Robust Multivariate Regression (2004)".
* tests/lmrob-ex12.R: use versions of predict[.lmrob]()
2007-10-24 Martin Maechler <maechler@stat.math.ethz.ch>
* man/condroz.Rd: set latin1 encoding (and fix typo)
* R/lmrob.R (predict.lmrob): define predict() and model.matrix()
methods, working via "lm" methods.
* NAMESPACE: export vcov(<lmrob>)
* man/summary.lmrob.Rd: some docu of new methods
2007-08-02 Martin Maechler <maechler@stat.math.ethz.ch>
* R/adjoutlyingness.R (adjOutlyingness): small improvements,
getting rid of loops; fix an obvious typo (in original code).
Leave away the Inf and NaN that from abs(Y[] - m) / ( tup | tlo)
2007-07-21 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Author): add Tobias
* src/rmc.c (h_kern): revert to absolute test; many more experiments
* tests/mc-etc.R (x3): a smallish "extreme" case of "non-convergence"
2007-07-20 Martin Maechler <maechler@stat.math.ethz.ch>
* tests/mc-etc.R: new testing of mc() and related
* src/rmc.c (mc_C_d): changed work[] and weight[] to 0-indexing;
this is hopefully the last bug ...
* R/adjbox.R (adjbox.formula): use adjbox(), not boxplot()!
* man/adjboxStats.Rd: added
2007-07-20 Tobias Verbeke <tobias.verbeke@businessdecision.com>
* R/adjbox.R: Skewness-adjusted boxplot ported from Matlab LibRA
* man/adjbox.Rd:
* data/los.rda, man/los.Rd:
* data/condroz.rda, man/condroz.Rd: two dataset related to medcouple
2007-07-19 Martin Maechler <maechler@stat.math.ethz.ch>
* R/adjoutlyingness.R: new (also from the Antwerpen MC collection)
* DESCRIPTION (Depends): R >= 2.3.1, so we can use
* NAMESPACE (useDynLib): .registration = TRUE
* R/*.R (.C, .Fortran): now can use name variable instead of string
and drop 'PACKAGE = ".."'
2007-07-18 Tobias Verbeke and Martin Maechler <maechler@R-project.org>
* src/rmc.c, src/robustbase.h (rmc): code for medcouple (MC);
needs debugging: infinite loops and segmentation faults
* R/mc.R (mc): new mc() for MedCouple
2007-07-16 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 0.4-0 - definitely made progress
* R/plot.lmrob.R (plot.lmrob): recompute robust Mahalanobis
distances and cache them with the object.
2007-07-10 Martin Maechler <maechler@stat.math.ethz.ch>
* R/lmrob.R (summarizeRobWeights): new defaults; work but warn
when 'eps' and 'eps1' lead to weights both close to 0 and 1.
* R/covPlot.R: don't warn for which = "all"
* man/covPlot.Rd: example
2007-06-28 Martin Maechler <maechler@stat.math.ethz.ch>
* data/kootenay.tab: add "famous" data set
* man/kootenay.Rd:
* data/cushny.R: add the other "famous" simple data set
* man/cushny.Rd:
2007-06-20 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 0.2-8 ready to be released
* src/lmrob.c (rwls): patch from Matias Salibian: Don't do any
"lambda iterations" anymore, they are remnants from old "experiments".
2007-06-19 Valentin Todorov <valentin.todorov@chello.at>
* R/covMcd.R: usage of simulated finite sample correction factors fixed:
* - case p=1 fixed
* - simulated corrections used only when the Pison et.al.
* formula is definitely wrong (negative or very large)
2007-06-09 Martin Maechler <maechler@stat.math.ethz.ch>
* tests/lmrob-data.R, *.Rout.save: new consistency tests for lmrob()
* R/biweight-funs.R (tukeyPsi1, tukeyChi): renamed from
lmrob.Psi() and lmrob.Chi(); also renamed
* man/tukeyPsi1.Rd, man/tukeyChi.Rd: updated, also mentioning "psiFunc"
* src/lmrob.c (rwls): now controlling *relative* error in MM
iterations, i.e., convergence happens when ||b1 - b2|| < eps * ||b1||.
The above 'eps' is now part of lmrob.control() instead of
hard-wired in C code.
* R/lmrob.MM.R (lmrob.MM): new argument 'trace.lev'
* src/robustbase.h (R_lmrob_MM): add trace_lev argument
2007-06-08 Martin Maechler <maechler@stat.math.ethz.ch>
* src/lmrob.c (refine_fast_s): slight change in warning()
[make message nicer for future R >= 2.5.1]
2007-04-21 Martin Maechler <maechler@stat.math.ethz.ch>
* R/ltsReg.R: replace 'quan' by 'h' internally
* R/covMcd.R: ditto
* R/covMcd.R (h.alpha.n): renamed from "quan.f"() and now exported:
* NAMESPACE: and hence
* man/h.alpha.n.Rd: documented, and linked to from here
* man/ltsReg.Rd, man/covMcd.Rd:
2007-04-18 Valentin Todorov <valentin.todorov@chello.at>
* R/covMcd.R: use simulated finite sample correction factors {FIXME!}
2007-04-11 Martin Maechler <maechler@stat.math.ethz.ch>
* R/ltsReg.R (ltsReg.default): 'ans$X' now has "intercept first"
to match coefficient vector.
* R/ltsReg.R (summary.lts): no need to reorder 'R' (cholesky) anymore
2007-04-02 Valentin Todorov <valentin.todorov@chello.at>
* R/covMcd.R: the (repeated) calculation of the consistency
* correction factor for the raw and reweighted MCD covariance
* replaced by a call to a function MCDcons()
2007-03-30 Valentin Todorov <valentin.todorov@chello.at>
* R/covMcd (print.mcd): solve a conflict with fastmcd() in
package robust: both return an object of class "mcd"
2007-03-28 Martin Maechler <maechler@stat.math.ethz.ch>
* R/covMcd.R (.fastmcd): subsample size myk <- p+1 (was 'p')
2007-03-27 Martin Maechler <maechler@stat.math.ethz.ch>
* R/covMcd.R: cosmetic changes; comments
* src/rffastmcd.f: ditto
* tests/tmcd.R: added very small sample (n < 2p) examples.
2007-03-26 Martin Maechler <maechler@stat.math.ethz.ch>
* R/ltsReg.R (print.summary.lts): signif.stars: instead of FALSE,
use same default as for lm(.).
* man/summary.lts.Rd
2007-03-26 Martin Maechler <maechler@stat.math.ethz.ch>
* R/covMcd.R (covMcd): be more tolerant about small n,
notably n < 2p, now only requiring n >= p + 2
* src/rf-common.f (rfnbreak): really unused
* src/rfltsreg.f, src/rffastmcd.f: comment use of rfnbreak()
2007-03-24 Martin Maechler <maechler@stat.math.ethz.ch>
* R/covMcd.R (covMcd): ans$raw.cov should be matrix even for p==1
2007-03-21 Martin Maechler <maechler@stat.math.ethz.ch>
* R/ltsReg.R (ltsReg.default): fix long-standing ("rrcov") bug of
wrong coefficient order in ltsReg(x,y, intercept=FALSE).
* tests/LTS-specials.R: add regression-test
2007-02-08 Martin Maechler <maechler@stat.math.ethz.ch>
* R/covMcd.R (singularityMsg): moved the remaining cases out of
covMcd().
2007-01-24 Martin Maechler <maechler@stat.math.ethz.ch>
* R/covMcd.R (covMcd): save 'singularity' info as list, and don't
append it as string to 'method'.
(singularityMsg): new utility used for printing singularity of MCD
(print.mcd): using strwrap() instead of "\n" such that print()
obeys options("width").
2006-12-28 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 0.2-7 released to CRAN
* src/rfltsreg.f: get rid of warnings, notably some extraneous args.
* src/rffastmcd.f: ditto
* inst/test_MCD.R (mortality, mort3): add example {near singular}
* tests/tmcd.R: test "near singular" example, using new tolSolve:
* R/rrcov.control.R (rrcov.control): new tolSolve = 1e-14
* R/covMcd.R (covMcd): use 'tolSolve' instead of 1e-10 for
mahalanobis' solve(*, tol).
2006-12-21 Valentin Todorov <valentin.todorov@chello.at>
* R/ltsPlot.R (ltsPlot): for "rqq", use *standardized* residuals
2006-10-20 Martin Maechler <maechler@stat.math.ethz.ch>
* src/rfltsreg.f (rfltsreg): more comments; and minor cleanups
* R/ltsReg.R (.fastlts): slightly simplified 'nsamp' checking and
setting
* DESCRIPTION (LazyData): yes
* man/heart.Rd: mention survivals' "heart" data
2006-10-18 Martin Maechler <maechler@stat.math.ethz.ch>
* src/rfltsreg.f: less "if(<expr>) l1,l2,l3" ; better indenting; etc
worked pretty hard on C translation but that still seg.faults (!)
2006-10-04 Martin Maechler <maechler@stat.math.ethz.ch>
* INDEX: added a "manual" INDEX which has all the data sets at
the end.
* R/OGK.R (covOGK): more default arguments: n.iter = 2, and
weight.fn = hard.rejection
* R/OGK.R (s_mad, s_IQR): more "scale functions" for (O)GK
* tests/OGK-ex.R: added examples for new s_*() scales;
* tests/OGK-ex.Rout.save: new
2006-10-03 Martin Maechler <maechler@stat.math.ethz.ch>
* R/qnsn.R (s_Qn, sSn): new (trivial) wrapper functions for easier
use in covOGK().
* man/Sn.Rd, man/Qn.Rd: ditto
* man/covOGK.Rd: example with the above
2006-09-30 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 0.2-6
* R/covPlot.R (covPlot): added 'labels.id', 'cex.id' and
'label.pos' arguments, "parallel" to plot.lm() and improved the
labeling accordingly.
* man/covPlot.Rd: 'ask=TRUE' gives problems in R <= 2.3.1
2006-09-29 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 0.2-5
* data/radarImage.rda: add 'radarImage' data set from MMY-book
* man/radarImage.Rd: ditto
* data/toxicity.rda: added 'toxicity' data set (from MMY)
* man/toxicity.Rd: ditto
* src/rf-common.f (rfishsort): swap integer declaration order
2006-09-23 Martin Maechler <maechler@stat.math.ethz.ch>
* man/covPlot.Rd: document covPlot() as well, since that is more
generally usable.
* src/rf-common.f (rfrangen): declare unifrnd() as double prec.;
also in other places; now using 'implicit none' to catch such
things more easily.
* R/tolEllipse.R (tolEllipsePlot): classic=TRUE: do not prepare
a side-by-side plot, since we *over*plot.
Rename 2nd argument from 'mcd' to 'm.cov', since it really only
needs to have a mean ('center') and covariance component.
2006-09-05 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 0.2-3 uploaded to CRAN
* tests/tlts.R: rename test functions and move to new file
* inst/test_LTS.R:
* tests/tmcd.R: rename test functions and move to new file;
do not 'time' them, since we want to use *.Rout.save files.
* inst/test_MCD.R:
* src/Makevars: add long overdue $(FLIBS)
2006-09-04 Martin Maechler <maechler@stat.math.ethz.ch>
* R/ltsReg.R (ltsReg.default): add argument name: sort(*, partial = )
* R/covMcd.R (covMcd): ditto
2006-06-27 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Depends): no longer depend on "MASS" which is suggested.
* NAMESPACE, man/summarizeRobWeights.Rd: export and document
summarizeRobWeights().
* R/lmrob.R (summarizeRobWeights): improvement (singular/plural etc)
* R/ltsReg.R (ltsReg.formula): add 'subset' etc; and follow
guidelines in developer.r-project.org/model-fitting-functions.txt.
* tests/tmcd.R: typo; add timing comparison
* R/glmrob.R (glmrob): family = "gaussian" now dispatches to lmrob()
2006-06-24 Martin Maechler <maechler@stat.math.ethz.ch>
* R/glmrob.R (print.summary.glmrob): as for lmrob(), now use
summarizeRobWeights() and printControl().
* R/lmrob.R (printControl): more flexible
* man/glmrob.Rd: update examples with 'weights.on.x'
2006-06-23 Andreas Ruckstuhl <rks@zhwin.ch>
* R/glmrobMqle.R (wts_HiiDist): *row*Sums()!
2006-06-13 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 0.2-2
* src/Makevars (PKG_LIBS): need this (in particular for Windows)
2006-06-08 Martin Maechler <maechler@stat.math.ethz.ch>
* src/lmrob.c (refine_fast_s): made sure 'conv *is* called as *Rboolean
2006-06-07 Martin Maechler <maechler@stat.math.ethz.ch>
* src/lmrob.c (refine_fast_s): print warning in case of non-convergence
* DESCRIPTION (Version): 0.2-1 - pre-release
* R/lmrob.MM.R (lmrob.control): decrease refine.tol "back" to 1e-7
* man/lmrob.control.Rd: ditto
* src/lmrob.c (rho_biwgt): fix embarassing sign typo/thinko
2006-06-06 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 0.2-0 "pre-released" to Andreas & Matias
* src/lmrob.c (rwls): return *max_it = #{iterations used}
* R/lmrob.MM.R (lmrob.MM): return #{iterations} back to R level
* R/lmrob.R (summary.lmrob): and make sure they are printed.
2006-06-05 Andreas Ruckstuhl <rks@zhwin.ch>
* R/anova.lmrob.R (anova.lmrob): new, for model comparison
both "Wald" and "Deviance" tests.
* man/anova.lmrob.Rd: docu + example
2006-05-31 Martin Maechler <maechler@stat.math.ethz.ch>
* R/covMcd.R (covMcd): use R' RNG
* R/covMcd.R (print.summary.mcd): is new; also print.mvd and
summary.* are now here, and improved.
* src/rfltsreg.f (rfltsreg): use R's RNG
* src/rffastmcd.f (rffastmcd): ditto
* src/rf-common.f (rfrangen): use unifrnd(), and comment out
the previous uniran()
* src/R-rng4ftn.c: use R's RNGs also for Fortran, in
2006-05-29 Martin Maechler <maechler@stat.math.ethz.ch>
* src/lmrob.c: use R's unif_rand() instead of C's rand()
* R/lmrob.MM.R: set/save R's .Random.seed, possible from 'seed'
2006-05-29 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION: version 0.1-7; the last one with C's rand()
* R/lmrob.MM.R: it's "$seed" from init.S , not M(M)-estimate
2006-04-25 Martin Maechler <maechler@stat.math.ethz.ch>
* R/biweight-funs.R (lmrob.Psi): unification, rescaling, such
that Psi'(0) = 1
2006-04-22 Martin Maechler <maechler@stat.math.ethz.ch>
* R/lmrob.MM.R (lmrob.S): new (control) option 'best.r.s = 2';
was hardcoded in C
* src/lmrob.c (R_lmrob_S): 'best_r' is now argument; further,
seed_rand is passed to the fast_s*() sub functions, so we
can call them from R {and decide ourselves "if fast".
* src/rf-common.f: new file for functions identical
in rffastcmd.f and rfltsreg.f.
2006-04-21 Martin Maechler <maechler@stat.math.ethz.ch>
* data/NOxEmissions.Rd: add the large dataset from Ren Locher
* man/NOxEmissions.Rd:
2006-04-21 Martin Maechler <maechler@stat.math.ethz.ch>
* R/lmrob.MM.R (lmrob.MM): return robustness weights as 'wt'
2006-04-18 Martin Maechler <maechler@stat.math.ethz.ch>
* R/lmrob.MM.R (lmrob.control): change default for 'compute.rd'
to FALSE ==> robust (Mahalanobis) distances are *not* computed by
default. This prevents singularity errors which happen frequently
as soon as X contains (large) factors (with few levels).
2006-04-15 Martin Maechler <maechler@stat.math.ethz.ch>
* man/pension.Rd: add plots and simple 1st aid trafo (!)
* R/glmrobMqle.R (glmrobMqle): weights.on.x = "hat" couldn't have
worked(!) - still needs work __TODO__
* R/lmrob.MM.R (lmrob.S, lmrob.MM): simplified computations
achieving ~ 10% faster execution for a (n,p) = (500,20) example.
2006-04-01 Martin Maechler <maechler@stat.math.ethz.ch>
* src/lmrob.c: new lmrob() code from Matias' roblm package
* R/lmrob.*.R: renamed s/roblm/lmrob/ but also refactored
* man/lmrob.*.Rd: and added a bit
* TODO: section on lmrob()
2006-03-20 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 0.1-4
* data/vaso.rda: one value, vaso[32,2], had a typo; it was '0.3'
but should have been '0.03'
2006-03-16 Martin Maechler <maechler@stat.math.ethz.ch>
* R/OGK.R (scaleTau2): add consistency correction (for OGK).
* man/scaleTau2.Rd: added
* R/glmrobMqle.R: ni=0 special casing (not finished yet).
* tests/binom-ni-small.R: more testing of ni=0
2006-03-14 Martin Maechler <maechler@stat.math.ethz.ch>
* TODO, Done, DESCRIPTION: updated, ready for release
2006-03-14 Andreas Ruckstuhl <rks@zhwin.ch>
* R/anova-glmrob.R (anova.glmrob): new function
* man/anova.glmrob.Rd: and documentation, replacing previous modsel.*()
2006-02-24 Martin Maechler <maechler@stat.math.ethz.ch>
* R/print.lts.R: moved to this file (and simplified slightly) to
* R/ltsReg.R (ltsReg): more cleanup; fix (y ~ 1) and (y ~ 0) properly
2006-02-23 Martin Maechler <maechler@stat.math.ethz.ch>
* tests/LTS-specials.R: new file
2006-02-22 Martin Maechler <maechler@stat.math.ethz.ch>
* tests/MCD-specials.R: new tests
* tests/huber-etc.R: tests for huberM() moved from pkg 'sfsmisc'
2006-02-21 Martin Maechler <maechler@stat.math.ethz.ch>
* R/glmrob.R (summary.glmrob): "Std. Error" (with blank!)
2006-02-18 Martin Maechler <maechler@stat.math.ethz.ch>
* R/glmrobMqle.R (glmrobMqle): make it work for ncoef == 0
* tests/glmrob-specials.R: new tests
* R/glmrob.R (print.summary.glmrob): the same as print.glmrob + more
2006-02-17 Martin Maechler <maechler@stat.math.ethz.ch>
* R/glmrob.R (vcov.glmrob): added
(print.glmrob): fix typo
* tests/binom-ni-small.R: add from Martin's old "robGLM1" package
* R/glmrob.R (glmrob): '...' passed to glmrob<METH>.control(...)
2006-02-17 Valentin Todorov <valentin.todorov@chello.at>
* FIXED - .fastmcd and .fastlts no more return everything
* fixed problems in ltsReg in case of location model Y~1 (i.e. x
is missing in ltsReg.default())
* ltsReg & covMcd - added options 'best' and 'exact' for nsamp
* ltsReg & covMcd - added parameter for controlling the small
sample correction factors - use.correction
* rrcov.control - added parameter for controlling the small sample
correction factors - use.correction
* ltsReg & covMcd - output of the consistency and the small sample
correction factors
2006-02-09 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 0.1-2 ready for CRAN "baby release"
* man/vaso.Rd: fix longstanding typo: con*s*triction
* R/glmrob.R (glmrob): Oops! the *.control() function must only
have one "." and must be *called*
2006-02-08 Martin Maechler <maechler@stat.math.ethz.ch>
* R/glmrob.R,......: added 'glmrob' and 'nlrob' from Andreas Ruckstuhl
2006-02-02 Martin Maechler <maechler@stat.math.ethz.ch>
* R/covMcd.R: all moved from 'rrcov' after Valentin's
* R/ltsReg.R: "green light"
..........
2006-01-25 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 0.0-1 "prerelease" ready
* man/psi_func-class.Rd: version "checked in" and ready for pre-release
* man/chgDefaults-methods.Rd: ditto
2006-01-17 Martin Maechler <maechler@stat.math.ethz.ch>
* NAMESPACE: added name space
* R/OGK.R (covOGK): added this; even though, the default scale
estimate is *not* consistent
* tests/tests-OGK.R: minimal 'test'
2006-01-16 Martin Maechler <maechler@stat.math.ethz.ch>
* man/starsCYG.Rd: clean up of documentation for the Rousseeuw data
* man/aircraft.Rd: from Valentin
* ....
--------------- all these are for those things from 'rrcov' -------------------
2005-12-28 Valentin Todorov <valentin.todorov@chello.at>
* 0.2-11
* added more data sets from Rousseeuw & Leroy: telef, lactic,
pension, pilot, cloud, education, airmay
* fixed codoc discrepancies in the data sets stars and wood
* ltsReg & covMcd - added control parameter for the small sample correction factors
* ltsReg & covMcd - output of the consistency and the small sample correction factors
2005-10-24 Valentin Todorov <valentin.todorov@chello.at>
* 0.2-10
* minor corrections in the help of covPlot
* fixed bug in covPlot in case of class=TRUE
* tolellipse - both robust and classical ellipse are superimposed
* added directory inst/bm containing benchmarks comparing covMcd and ltsReg
to the corresponding functions in MASS, S-PLUS and Matlab
2005-10-17 Valentin Todorov <valentin.todorov@chello.at>
* 0.2-9
* minor corrections in the help of covMcd
* minor correction in ltsReg (false corrected to FALSE)
* covMcd - fixed the limitation on the number of variables <= 50
* ltsReg - fixed the limitation on the number of variables <= 50
* added function summary.mcd which prints (additionally to the output
of print.mcd) the correlation matrix (if requested), the eigenvalues
of the covariance or correlation matrix and the robust distances.
* added control object for the estimation options rrcov.control and
used in covMcd and ltsReg
2005-09-20 Valentin Todorov <valentin.todorov@chello.at>
* 0.2-8
* ltsReg: added formula interface
* ltsReg: adde generic functions summary.lts and print.summary.lts
* ltsReg: fixed a problem with reordering of the coeficients even in case
without intercept
2005-04-16 Valentin Todorov <valentin.todorov@chello.at>
* 0.2-7
* ltsReg: fixed a bug related to nsamp -> it was hard-coded = 500
in Fortran
* ltsPlot: default for id.n changed - instead of 3, now it is the
number of identified outliers
* ltsPlot: help enhanced
* covMcd, covPlot, tolellipse: tol.inv parameter changed to tol,
according the change in mahalanobis() in 2.1.0
2004-12-26 Valentin Todorov <valentin.todorov@chello.at>
* 0.2-6
* a bug in ltsReg (rsquared) fixed
* fixed CRLF line endings in FORTRAN sources
* fixed a problem in covMcd: in case of p=1 and cov=[0], the cov matrix was
a double instead of a matrix, which resulted in errors in subsequent
calls (e.g. determinant(mcd$cov) expects a matrix)
* fixed a problem in ltsReg when p==1 and Intercept==FALSE - the vectors of
coefficients ans$coefficients and ans$raw.coefficients were of size 2
* error handling added in ltsReg in case of scale=0
2004-09-16 Valentin Todorov <valentin.todorov@chello.at>
* 0.2-5
* several errors in doc fixed (ltsPlot.Rd, covPlot.Rd, aircraft.Rd)
2004-09-16 Valentin Todorov <valentin.todorov@chello.at>
* 0.2-4
* added Regression Diagnostic Plots - function ltsPlot()
* ...added Normal QQ Plot of the residuals
* ...added Standardized Residuals versus index plot
* ...added Standardized Residuals versus fitted values plot
* ...added Regression diagnostic plot
* ltsReg: the responce variable Y added to the result object
* covMcd: fixed a bug related to nsamp -> it was hard-coded = 500 in Fortran
* covMcd: fixed a bug - in case of alpha=1
* added S3 methods plot.mcd and plot.lts
* the S3 methods print.mcd and print.lts moved to separate R files
* added the stars data set (Hertzsprung-Russell diagram)
2004-07-13 Valentin Todorov <valentin.todorov@chello.at>
* 0.2-3
* improved documentation of the datasets
* added datasets aircraft and delivery
* added Covariance Plots - function covPlot()
* ...added Distance Plot - function distplot()
* ...added Distance-Distance Plot - function ddplot()
* ...added Chisquare QQ-Plot - function chi2qqplot()
* ...added Tolerance Ellipse Plot - function tolellipse()
* added function print.lts (for ltsReg result); included in the test tlts.R
* added function print.mcd (for covMcd result); included in the test tmcd.R
2004-06-26 Valentin Todorov <valentin.todorov@chello.at>
* 0.2-2
* fixed bug in Fortran: rfltsreg.f, xrfnbreak()
* Depends >= 1.8 (it was >= 1.9, because of the bug above)
* Parameter, controlling whether to perform intercept adjustment at each step added to ltsReg and its default value set to FALSE
|