-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathChangeLog
More file actions
1654 lines (1015 loc) · 50.8 KB
/
Copy pathChangeLog
File metadata and controls
1654 lines (1015 loc) · 50.8 KB
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
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2014-03-27 Martin Maechler
* NOTE: All newer changes are summarized in the NEWS file
(./inst/NEWS.Rd) and detailed & timestamped in the svn logs.
2014-03-26 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.15.2
* R/*.q updates to make messages translatable; proposed by Lukasz Daniel
2014-03-12 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.15.1
* man/mona.Rd: anyNA2[cbind(<i>, <j>)] <- NA fails in R < 3.0.x
2013-11-06 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.15.0; also using Authors@R
* R/agnes.q (agnes): method "gaverage" contributed by Pierre Roudier.
2013-03-26 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.14.5, never released
2013-03-26 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.14.4, released to CRAN, 2013-03-26
* po/R-de.po: trivial update from Detlef,
2012-02-06 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.14.2, released to CRAN today
* R/clusGap.R (maxSE): with 5 methods to compute "maximal gap",
used also in print() method.
2012-01-21 Martin Maechler <maechler@stat.math.ethz.ch>
* R/clusGap.R (print.clusGap, plot.clusGap): added
2012-01-17 Martin Maechler <maechler@stat.math.ethz.ch>
* R/clusGap.R: new clusGap() for computing the cluster gap statistic.
2011-12-21 Martin Maechler <maechler@stat.math.ethz.ch>
* R/coef.R (coefHier): newly export coefHier(), interfacing to C's bncoef().
* tests/diana-boots.R (dianaBoot): add a "bootstrap", for considerably more tests.
* tests/diana-ex.R: reorganized
* src/twins.c: newly translated from Fortran, for more future flexibility
* src/twins.f: no longer there
* R/agnes.q (as.dendrogram.twins): define for 'twins' rather than
just 'agnes'.
2011-12-03 Martin Maechler <maechler@stat.math.ethz.ch>
* R/plotpart.q (clusplot.default): xlab, and ylab arguments;
new 's.x.2d' argument which allows to specify the plot setup in details.
(clas.snijpunt): also check for NAs in x[1:2,m].
Suggestions originally from Peter Ruckdeschel
2011-10-16 Martin Maechler <maechler@stat.math.ethz.ch>
* po/: setup of for translation
2011-09-14 Martin Maechler <maechler@stat.math.ethz.ch>
* inst/CITATION: update according to state-of-the-art.
2011-08-29 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.14.1, released to CRAN, 2011-10-16
* R/silhouette.R (plot.silhouette): col = <one per cluster> had
ordering bug.
* man/silhouette.Rd: added example
2011-06-07 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.14.0, released to CRAN, 2011-06-07
* R/plotpart.q (clusplot.default): use message() and warning()
appropriately instead of just cat(). Further, add a 'add = FALSE'
argument which allows *adding* ellipses to an existing plot.
2011-06-06 Martin Maechler <maechler@stat.math.ethz.ch>
* R/plotpart.q (clusplot.default): new 'cex' and 'cex.txt', the
latter for the "point" labels.
2011-05-20 Martin Maechler <maechler@stat.math.ethz.ch>
* src/pam.c (cl_pam): trace_lev: also trace the computation of
dissimilarities (a very expensive part, for large n).
* R/pam.q (pam): cluster.only=TRUE: if the *computed*
dissimilarities have NA's the necessary error was not signalled.
2011-03-07 Martin Maechler <maechler@stat.math.ethz.ch>
* tests/*.Rout.save: update after R-devel's "scientific()" patch.
* DESCRIPTION (Version): 1.13.4, *not* released
2011-02-21 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.13.3, released to CRAN today
2010-12-12 Martin Maechler <maechler@stat.math.ethz.ch>
* R/ellipsoidhull.R, *: use "full argument names"
2010-11-09 Martin Maechler <maechler@stat.math.ethz.ch>
* R/clara.q (clara): enforce sampsize > k {as the help file always said};
allow to disable 'DUP=FALSE' via env variable.
2010-11-08 Martin Maechler <maechler@stat.math.ethz.ch>
* src/clara.c (cl_clara): inserting rand_k into nsel[]: simplified
and avoiding (typically inconsequential) out_of_bound array access.
2010-10-21 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.13.2 ; Enhances: MASS; released to CRAN, 2010-11-10
* src/cluster.h, src/daisy.f, src/mona.f:
* src/init.c (FortEntries): s/cl_/cl/ for now,
as some f77/g77 setups cannot deal with it correctly.
2010-06-24 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.13.1
2010-06-23 Martin Maechler <maechler@stat.math.ethz.ch>
* man/daisy.Rd: add our *generalized* Gower formula (LaTeX), and
update the detailled description accordingly.
2010-06-02 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.13.0
* src/daisy.f (cl_daisy): renamed from daisy
* src/init.c, src/*.[chf]: renamed others, so we can use
* NAMESPACE (useDynLib): .registration = TRUE
2010-05-28 Martin Maechler <maechler@stat.math.ethz.ch>
* R/daisy.q (daisy): using variable weights (for gower).
* src/daisy.f: ditto
2010-03-29 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.12.3
* R/plothier.q (bannerplot): do not use formals(pretty)
2009-12-05 Martin Maechler <maechler@stat.math.ethz.ch>
* man/daisy.Rd: fix page number for Gower (1971) reference.
2009-10-05 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.12.1
* man/ellipsoidhull.Rd: fix missing \link ((parts former 'graphics'
have long been moved to 'grDevices'.
2009-05-13 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.12.0 -- released to CRAN
* R/silhouette.R (silhouette.default, print.summary.*, plot.*):
silhouette(x, *) and its methods now also work when x uses integer
codes different than 1:k. Previously, this could seg.fault.
* tests/silhouette-default.R: test it.
2009-03-12 Martin Maechler <maechler@stat.math.ethz.ch>
* man/daisy.Rd: fix typo/thinko (thanks to Felix Mueller).
2009-01-21 Martin Maechler <maechler@stat.math.ethz.ch>
* R/agnes.q (as.dendrogram.agnes): new utility
* NAMESPACE: exported
2009-01-17 Martin Maechler <maechler@stat.math.ethz.ch>
* man/plot.agnes.Rd: link to pltree.twins() directly
* R/agnes.q (print.summary.agnes): output 'agnes' instead of `agnes'
2009-01-07 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version, Date): 1.11.12 and CRAN-released
2009-01-05 Martin Maechler <maechler@stat.math.ethz.ch>
* man/ellipsoidhull.Rd: fix for more stringent Rd parsing
2008-09-16 Martin Maechler <maechler@stat.math.ethz.ch>
* R/ellipsoidhull.R (print.ellipsoid): and others: replace
backquotes ( ` ) by regular quotes.
2008-06-15 Martin Maechler <maechler@stat.math.ethz.ch>
* R/silhouette.R (sortSilhouette): do *not* overwrite the
correctly reordered rownames: Fixes very long standing bug
which lead to wrong observation labels in silhouette plots.
2008-04-10 Martin Maechler <maechler@stat.math.ethz.ch>
* R/zzz.R (.onUnload): add ..dynam.unload()ing
2008-02-29 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Date, Version): 1.11.10 and release
2007-12-19 Martin Maechler <maechler@stat.math.ethz.ch>
* src/pam.c (cstat, dark): move variable declarations to local context.
(bswap): add a few R_CheckUserInterrupt() calls
* R/pam.q (pam): new argument 'do.swap = TRUE'. Setting it to
FALSE allows to skip the more expensive "SWAP" phase.
* man/pam.Rd: (ditto)
2007-12-18 Martin Maechler <maechler@stat.math.ethz.ch>
* src/ind_2.h (ind_2): for m := max(i,j) > 46342, (m-2)*(m-1) give
integer overflow which leads to a seg.fault. Now fixed.
* src/pam.c (bswap): slightly improve trace output.
* tests/pam.R, tests/pam.Rout.save: corresponding slight adaptions.
* man/pam.Rd: "large" and
* man/clara.Rd: "small" datasets; pam() works with thousands ...
* R/clara.q (clara): error out when users try clara(<dist>, ...).
2007-09-28 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Date, Version): 1.11.9
* man/pam.Rd: in invisible example, do not use partially matched [[.
2007-09-04 Martin Maechler <maechler@stat.math.ethz.ch>
* src/mona.f (mona): dummy initializations for "-Wall"
* src/fanny.c (fygur): dummy init 'lang'
2007-08-23 Martin Maechler <maechler@stat.math.ethz.ch>
* src/daisy.f et al: de-tabify the fortran sources
2007-06-05 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.11.7 (mainly for R-devel)
2007-06-02 Martin Maechler <maechler@stat.math.ethz.ch>
* man/plot.diana.Rd, etc: s/dendrogramm/dendrogram/
2007-05-31 Martin Maechler <maechler@stat.math.ethz.ch>
* man/plantTraits.Rd: add \encoding{latin1}
2007-04-09 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.11.6 - needed
for R version >= 2.6.0.
* R/daisy.q (daisy): for 2-valued variables only warn about
non-specified type when n >= 10.
2007-04-07 Martin Maechler <maechler@stat.math.ethz.ch>
* R/diana.q (diana): don't use as.double(.) and DUP=FALSE !
2007-03-30 Martin Maechler <maechler@stat.math.ethz.ch>
* man/diana.Rd: merge man/diana.object.Rd into *one* help file
* DESCRIPTION (Version): 1.11.5 - for R 2.5.0
2007-03-29 Martin Maechler <maechler@stat.math.ethz.ch>
* R/silhouette.R (silhouette.default): use x$clustering only when x is
a list.
2006-12-11 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.11.4 -- ready
* tests/to-25x, tests/to-24x: different outputs for R 2.5.0 (unstable)
* tests/clara.Rout.save-R25x,..: and R-2.4.x
* tests/silhouette-default.R: use [as.integer(rownames(.)), ]
since we cannot guarantee rownames there.
2006-12-05 Martin Maechler <maechler@stat.math.ethz.ch>
* src/fanny.c (fuzzy): 14 instead of 15 sign.digits for trace_lev >= 2
printing.
* R/clara.q (stop): message for NA-observations: only show first
dozen of observation numbers.
* tests/clara-NAs.R: test the above
* tests/clara-NAs.Rout.save: ditto
2006-12-02 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.11.3 -- released to CRAN
* R/daisy.q (daisy): finish metric "gower", and test an example
2006-12-01 Martin Maechler <maechler@stat.math.ethz.ch>
* man/daisy.Rd: more content about Gower; thanks to Gavin Simpson
2006-11-23 Martin Maechler <maechler@stat.math.ethz.ch>
* R/daisy.q (daisy): metric = "gower" -- not yet finished
2006-09-07 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.11.2 released
* src/init.c: register dysta3 as C, not Fortran; drop trailing "_"
==> need to adapt these:
* src/fanny.c:
* src/cluster.h:
* tests/dysta-ex.R:
* tests/dysta-ex.Rout.save:
2006-08-24 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.11.1 released to CRAN
* R/silhouette.R (sortSilhouette): make sure "iOrd" is there also
if "Ordered" is TRUE. (fixes plotting w/ col = 'clusterwise'.)
2006-08-23 Martin Maechler <maechler@stat.math.ethz.ch>
* tests/mona.R: update (slightly extend) regression test
* tests/mona.Rout.save: consequence
* R/mona.q (mona): replace apply(<matrix>, 2, factor) with safer
code, to work correctly in R 2.4.0 and later (thanks to Brian).
2006-06-12 Martin Maechler <maechler@stat.math.ethz.ch>
* R/plotpart.q (clusplot.default): new argument 'sub'; default is
unchanged, but you can suppress the subtitle.
2006-05-17 Martin Maechler <maechler@stat.math.ethz.ch>
* src/fanny.c (fygur): a little more cleanup --
for compatibility with dark() in src/pam.c
* DESCRIPTION (Version): 1.11.0, to be released to CRAN
2006-05-03 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Depends): require R >= 2.2.1 -- which should have
happened earlier, since registration of Fortran symbols failed before.
2006-04-18 Martin Maechler <maechler@stat.math.ethz.ch>
* man/plantTraits.Rd: new dataset with many variables, including
all kinds of factors, provided by Jeanne Vallet.
* data/plantTraits.rda: useful for daisy() illustrations
2006-04-12 Martin Maechler <maechler@stat.math.ethz.ch>
* R/fanny.q (fanny): several new options: metric = "SqEuclidean",
iniMem.p: initial membership matrix can be specified;
cluster.only, keep.diss, keep.data: for saving memory/speed.
warning when k.crisp < k.
printing of $membership is now in rounded percent
* man/fanny.Rd: document the above
* tests/fanny-ex.R: much extended
2006-04-11 Martin Maechler <maechler@stat.math.ethz.ch>
* man/chorSub.Rd: new dataset;
* data/chorSub.Rd: useful for fanny() illustrations
* R/fanny.q (fanny): Dunn's partition coefficient (and its
normalization) now always use sum.. u.. ^ 2 (and not "^ memb.exp").
option 'trace.lev' for iteration monitoring
* src/fanny.c (fuzzy): (dito)
2006-04-08 Martin Maechler <maechler@stat.math.ethz.ch>
* src/fanny.c: Translated from Fortran (fanny.f); potentially with
more options, etc.
2006-03-20 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.10.5 for CRAN
* .rsync-exclude: new file useful since I moved my RCS archive to SVN
(using 'cvs2svn' and a perl script on 'svn-stat').
2006-02-27 Martin Maechler <maechler@stat.math.ethz.ch>
* src/sildist.c (sildist): 2nd round (by Romain and me)
2006-02-25 Martin Maechler <maechler@stat.math.ethz.ch>
* R/silhouette.R (silhouette.default): new C version in file
* src/sildist.c (sildist): provided by Romain Francois
2006-02-04 Martin Maechler <maechler@stat.math.ethz.ch>
* R/ellipsoidhull.R (print.ellipsoid): also work without 'conv' slot
* man/ellipsoidhull.Rd: finally explain 'd2'; and \link to other
ellipse implementations.
* man/volume.ellipsoid.Rd: + example of 'ellipsoid' construction
2006-01-31 Martin Maechler <maechler@stat.math.ethz.ch>
* man/bannerplot.Rd: (et al.): use \dQuote{} and \sQuote{}
2006-01-27 Martin Maechler <maechler@stat.math.ethz.ch>
* man/pltree.twins.Rd: explain the as.hclust() dispatch; add
example, particularly for plot(as.dendrogram(.)).
2006-01-26 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.10.4 -- released to CRAN
2006-01-25 Martin Maechler <maechler@stat.math.ethz.ch>
* R/silhouette.R (silhouette.clara): added (for "full = TRUE" option)
2006-01-07 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.10.3
* src/init.c: registering all (R-callable) C and Fortran routines
* src/cluster.h: declare the remaining callable routines
2005-12-30 Martin Maechler <maechler@stat.math.ethz.ch>
* inst/CITATION: first version
* R/silhouette.R (plot.silhouette): 'nmax.lab' was not obeyed
properly (labels were drawn for large n when the
silhouette had rownames).
* man/silhouette.Rd: explain clara's silhouette and "full" one.
2005-09-06 Martin Maechler <maechler@stat.math.ethz.ch>
* man/pluton.Rd: \source: new URL @ www.agoras.ua.ac.be
* man/clusplot.default.Rd: dito
* man/ellipsoidhull.Rd: ""
* README: ""
2005-08-31 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.10.2 released to CRAN
* src/clara.c (bswap2): minor cosmetic
2005-08-30 Martin Maechler <maechler@stat.math.ethz.ch>
* R/daisy.q (daisy): the case of a *binary*-only matrix (not
data frame), used to fail, now works fine, tested in
* tests/daisy-ex.R:
* src/twins.f: get rid of gfortran warnings
* src/mona.f: dito
* src/fanny.f: "
* src/meet.f: "
2005-08-06 Martin Maechler <maechler@stat.math.ethz.ch>
* tests/clara*: adapt to slightly changed output
* src/clara.c (clara), (bswap2): better trace_lev printing;
code more in line with 'pam'.
2005-08-05 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.10.2 {not released}
* R/clara.q (clara): no longer support deprecated 'keepdata';
also return 'i.med'; new argument 'medoids.x' allowing to
save even more memory; do not assign 'data' when
keep.data=FALSE.
* man/clara.Rd: + 'i.med' + 'medoids.x' - 'keepdata'
* man/clara.object.Rd: dito
2005-07-19 Martin Maechler <maechler@stat.math.ethz.ch>
* tests/silhouette-default.R: if(FALSE) library(*, lib="..MM..")
2005-06-30 Martin Maechler <maechler@stat.math.ethz.ch>
* tests/silhouette-default.R (isTRUE): need for R < 2.1.x
2005-06-29 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Date):
* DESCRIPTION (Version): 1.10.1
* R/silhouette.R (plot.silhouette): format() clus.avg.widths more nicely
* R/silhouette.R (silhouette.default): don't use max.col() which
returns random.
* tests/silhouette-default.R: test only 3rd column difference
* tests/silhouette-default.Rout: update {for non-random sil*.default()}
2005-06-20 Martin Maechler <maechler@stat.math.ethz.ch>
* tests/silhouette-default.R: added test for equivalence of
silhouette.default() and silhouette.partition()
* tests/silhouette-default.Rout.save: new output
--> The silhouette() results are *still* not always the same (-> fixed)
* R/silhouette.R (silhouette.default): if Nj := #{obs. in C_j} = 1
the silhouette width is 0, not 1, as in pam's original code.
* man/silhouette.Rd: document the case of 1-obs-clusters.
2005-06-09 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.10.0
2005-06-08 Martin Maechler <maechler@stat.math.ethz.ch>
* R/pam.q (pam): new argument 'trace.lev = 0'
* man/pam.object.Rd: pam() also return $medID
* src/pam.c (dark): take special care of empty clusters (ntt == 0)
* src/pam.c (pam): also work when medoids are not increasing.
* R/pam.q (pam): user-supplied 'medoids': even more checks
2005-06-02 Martin Maechler <maechler@stat.math.ethz.ch>
* tests/fanny-ex.R: use new RNG (hence change example); add samples
of memb.exp -> 1
* DESCRIPTION (Author): new formulation for better auto-citation()
* src/fanny.f (fanny): 'r' ("membership exponent") becomes
user-specifiable argument; dito for 'maxit'
* R/fanny.q (fanny): new arguments 'memb.exp' ("membership exponent");
'tol' and 'maxit'
* R/fanny.q (.print.fanny): utility to be used in both print.*()
methods; nicer, using formatC() and 'digits' explicitly.
* man/fanny.Rd: new arguments, see above
* man/fanny.object.Rd: mention new '$ objective' result component
* man/print.fanny.Rd: now also for [print.]summary.fanny();
mention new explicit 'digits' argument to print methods.
2005-04-04 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.9.8
* R/daisy.q (print.dissimilarity): rewritten, now based on
print.hclust().
* R/zzz.R (gettextf): ..etc: define substitutes such as to allow
running in R < 2.1.0
* man/ellipsoidhull.Rd: fixed outdated "link[pkg]"
* man/clusplot.default.Rd: dito
* man/*.Rd : etc
2005-03-22 Martin Maechler <maechler@stat.math.ethz.ch>
* R/clara.q (clara): start to 'rationalize' messages for future
translation.
* src/cluster.h: define the _(String) macro (for i18n), not yet used.
2005-01-21 Martin Maechler <maechler@stat.math.ethz.ch>
* man/clara.Rd: get rid of iso-latin1 character
2004-12-14 Martin Maechler <maechler@stat.math.ethz.ch>
* man/agnes.Rd: concept{UPGMA ..}
2004-11-27 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.9.7 (not yet CRAN)
* R/plothier.q (bannerplot): ouse default 'main' and 'sub'
* man/bannerplot.Rd: + example
* R/coef.R (coef.hclust): Implement R function for
computing the agglomerative/divisive coefficient.
* man/coef.hclust.Rd: new; including example
* man/predict.ellipsoid.Rd: wrong link
2004-11-26 Martin Maechler <maechler@stat.math.ethz.ch>
* src/twins.f (bncoef): drop unused argument 'ner'
2004-11-20 Martin Maechler <maechler@stat.math.ethz.ch>
* man/clusplot.default.Rd: fix typo
2004-10-28 Martin Maechler <maechler@stat.math.ethz.ch>
* man/predict.ellipsoid.Rd: add nice example
2004-08-19 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (LazyData): yes
2004-08-12 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.9.6
(Depends): added standard packages
* R/daisy.q (daisy): scale=TRUE didn't collaborate with NAs
(since 2003-11-29).
* tests/daisy-ex.R: add an example, testing the above
2004-08-03 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.9.5 --> to CRAN
2004-07-21 Martin Maechler <maechler@stat.math.ethz.ch>
* man/mona.Rd: drop an extraneous "}\n" that Kurt's new tools found
* man/twins.object.Rd: dito
2004-07-06 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.9.5 (not yet released)
* man/pam.Rd: note on 'medoids'
2004-07-02 Martin Maechler <maechler@stat.math.ethz.ch>
* R/pam.q: new argument 'medoids'
* man/pam.Rd: ex.with 'medoids'
* src/pam.c (bswap): new argument 'med_given'
2004-06-29 Martin Maechler <maechler@stat.math.ethz.ch>
* src/pam.c (bswap): moved ammax/nmax computation into same loop
as beter[]. added many comments.
GOAL: Allow initial medoids user-specification.
>>> TODO: do the analogous thing in src/clara.c 's bswap2()
2004-06-24 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.9.4 -- fix dysta() using jtmd[] problems
(thanks to valgrind and BDR).
* R/agnes.q (agnes): initialize 'jtmd' to length p in any case
* R/diana.q (diana): ditto
* R/fanny.q (fanny): "
* R/pam.q (pam): "
* R/daisy.q (daisy): pass 'mdata' to Fortran
* src/daisy.f (daisy): new "boolean" argument 'mdata'
* src/clara.c (clara): pass has_NA to dysta2() and don't use
jtmd[] and valmd[] if(!has_NA)
* src/cluster.h (dysta2): new arg 'has_NA'
2004-06-18 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.9.3 {only change = below}
* src/ind_2.h (ind_2): use __inline__ only for gcc (__GNUC__)
2004-06-11 Martin Maechler <maechler@stat.math.ethz.ch>
* man/clara.Rd: finish \note{} about 'rngR' (thanks to Christian H).
2004-06-01 Martin Maechler <maechler@stat.math.ethz.ch>
* src/ind_2.h: new file for __inline__ definition of ind_2(),
#included from these two files:
* src/clara.c:
* src/pam.c:
* tests/agnes-ex.R: test for "weighted" == "flexible"(0.5)
2004-05-28 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.9.2 (not yet released)
* R/agnes.q (agnes): New method = "flexible" (and 'par.method = ..')
* src/twins.f (averl): implementing "flexible" Lance-Williams formula.
* man/agnes.Rd:
2004-05-25 Martin Maechler <maechler@stat.math.ethz.ch>
* R/silhouette.R (silhouette.default): give silhouette 0 (not NaN)
when a_i = b_i {thanks to example and suggestions by Witek Wolsky}.
2004-04-26 Martin Maechler <maechler@stat.math.ethz.ch>
* src/pam.c: cosmetic efficiency improvement from Li Long
2004-03-11 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.8.1 for R versions <= 1.8.1
1.9.1 for R versions >= 1.9.0
-- released to CRAN
* src/clara.c (clara): fixed second NA-handling bug:
the test should be "nunfs+1 != jran"
Fixed "rngR = TRUE" bug: accidentally still used internal RNG.
Fixed 3rd bug if (lrg_sam) : need jk < n_sam for nsel[jk].
More & nicer printing for 'trace > 0'.
* R/clara.q (clara): more useful error msg for too many NAs (jstop=1)
2004-03-10 Martin Maechler <maechler@stat.math.ethz.ch>
* src/clara.c (clara): finally fixed longstanding bug which could
cause wrong results and segmentation faults, instead of ending
with the following error:
* tests/clara-NAs.R: new file w/ former seg.fault
* src/cluster.h (ind_2): new function instead of F77_CALL(meet)
* src/clara.c (clara): defined here (and used).
* src/pam.c (pam): used here
2004-03-09 Martin Maechler <maechler@stat.math.ethz.ch>
* R/clara.q (clara): sampsize = min(n, <old_default>)
2004-03-08 Martin Maechler <maechler@stat.math.ethz.ch>
* tests/agnes-ex.R: do not use object.size(), since
* tests/diana-ex.R: it's different on 64 bit, e.g.
* R/agnes.q (agnes): \ when diss = TRUE,
* R/diana.q (diana): \ but 'x' is not a "dissimilarity",
* R/fanny.q (fanny): / try as.dist(x)
* R/pam.q (pam): / and be consistent in all 4 functions
2004-01-23 Martin Maechler <maechler@stat.math.ethz.ch>
* R/silhouette.R (silhouette.default): do not require cluster
codes in 1:k (Murad Nayal <mn216@columbia.edu>).
* man/silhouette.Rd: accordingly; mention 2 <= k <= n-1
2003-12-22 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.8.0 for R versions <= 1.8.1
1.9.0 for R versions >= 1.9.0
2003-12-19 Martin Maechler <maechler@stat.math.ethz.ch>
* NAMESPACE: Finally make a namespaced package
2003-12-01 Martin Maechler <maechler@stat.math.ethz.ch>
* R/pam.q (print.summary.pam): readable indication *no* L/L*
clusters.
(print.pam): improve as well.
* man/pam.Rd: documenting `cluster.only'
2003-11-29 Martin Maechler <maechler@stat.math.ethz.ch>
* R/daisy.q (daisy): better checking & handling if(stand)
* R/pam.q (pam): new argument `cluster.only = FALSE'. If true,
only return the clustering vector, no other info.
* src/pam.c: translated from src/pam.f and "cleaned";
`all_stats' := NOT(cluster_only).
* src/cluster.h: new pam.c related headers
* src/dysta.f (dysta): new file: part of former src/pam.f
* R/pam.q (pam): use .C
2003-11-28 Martin Maechler <maechler@stat.math.ethz.ch>
* R/daisy.q (daisy): fix the new scale 0 code (from 11-17)
2003-11-17 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.7.7 -- (not released)
* tests/daisy-ex.R: new test for this:
* R/daisy.q (daisy): scale 0 does not give NaN dissimilarities
anymore. Use pColl() in messages
* R/zzz.R (sQuote): & dQuote() for R version < 1.8
2003-10-25 Martin Maechler <maechler@stat.math.ethz.ch>
* man/fanny.Rd: typo in the text-part of \deqn{}
2003-09-24 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Date): Sept.24: 20th anniversary w/ Lilo! -- release
* man/plot.mona.Rd: yet another codoc
2003-09-23 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.7.6 (for R 1.8.0)
* man/daisy.Rd: codoc difference for argument *defaults*
* man/ellipsoidhull.Rd: " " " "
* man/plot.mona.Rd: " " " "
* man/plot.diana.Rd: " " " "
use \method{..}{..} (more!) also for these:
* man/predict.ellipsoid.Rd
* man/silhouette.Rd:
* man/plot.agnes.Rd:
* man/plot.partition.Rd:
* man/ellipsoidhull.Rd:
2003-09-03 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Date): -> release
2003-08-27 Martin Maechler <maechler@stat.math.ethz.ch>
* man/flower.Rd: use V1-V8 in doc (since can't change the data).
2003-08-19 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.7.5 -- not yet released
2003-08-13 Martin Maechler <maechler@stat.math.ethz.ch>
__ All these are thanks to Luke Tierney's checkUsagePackage() !! __
* R/silhouette.R (plot.silhouette): `clw'
(sortSilhouette): `clid' & `k'
(summary.silhouette): `n'
* R/ellipsoidhull.R (ellipsoidhull): `ina' unneeded
* R/plotpart.q (clusplot.default): extraneous if() in "funny case"
2003-07-18 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Date): updated --> release to CRAN
* R/daisy.q (daisy): checking "> 2 levels" for binary vars
(gave wrong error when only 1 level; thanks to
Duncan.Mackay@flinders.edu.au).
Now allow "only 1 level" for binary vars
2003-07-10 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Date): update; not released, but put up on FTP
* R/silhouette.R (sortSilhouette): keep ordering; use it to
* R/silhouette.R (plot.silhouette): order colors, allow cluster colors
2003-07-09 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.7.4 -- not yet released
* R/daisy.q (daisy): better error message for invalid type
components; now also works for
* man/daisy.Rd: new example `dfl3'
2003-06-10 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.7.3
* R/silhouette.R (silhouette.default): fix bugs for case "Nj == 1"
* tests/silhouette-default.Rout.save:
* tests/silhouette-default.R: new test for the above
2003-06-04 Martin Maechler <maechler@stat.math.ethz.ch>
* tests/clara-ex.R and man/clara.Rd: add "drop = FALSE"
2003-06-03 Martin Maechler <maechler@stat.math.ethz.ch>
* man/clara.Rd: the "simulation" example is now correct for any seed.
* tests/clara-ex.R: using "correct" ex. above
2003-06-02 Martin Maechler <maechler@stat.math.ethz.ch>
* R/daisy.q (daisy): s/codes/unclass/
* tests/ellipsoid-ex.R: no need for try() anymore; use new RNG
* tests/clara.R:
* tests/clara-ex.R: better if(...) RNGdefault("1.6")
* tests/fanny-ex.R:
* tests/mona.R:
2003-05-28 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.7.2
* R/plotpart.q: clusplot.partition(): try to find `x$diss' by
looking up x$call.
2003-04-30 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version): 1.7.1
* man/pam.object.Rd: add example about assessing #{clusters} via
silhouette widths from Ch.Hennig.
* R/plotpart.q (plot.partition): new argument `dist'
It doesn't try a clusplot if `keep.diss' was FALSE and no `dist'
is specified.
* R/plotpart.q (clusplot.partition): new `dist' argument
* R/pam.q (pam): keep.diss passed wrong `jdyss' to Fortran!
2003-04-08 Martin Maechler <maechler@stat.math.ethz.ch>
* R/plothier.q (pltree.twins): simplified label construction;
call plot( <hclust object> ) instead of plot.hclust().
2003-03-26 Martin Maechler <maechler@stat.math.ethz.ch>
* tests/clara-ex.R: new, because of unclear non-reproducibility
* tests/clara.R: not example(clara) and smaller, moved some to above
* DESCRIPTION (Version): 1.7.0 (for R 1.7.0)
* DESCRIPTION (Depends): at least R 1.4
* R/zzz.R: requiring 1.4 needs much less
* R/zzz.R: define colSums() substitute for old R versions
* tests/ : updated *.Rout.save files
* .Rbuildignore: R/README-Splus is way outdated and irrelevant
2003-03-17 Martin Maechler <maechler@stat.math.ethz.ch>
* R/0aaa.R: Make sure assigning class c("dissimilarity", "dist")
(had many cases where only "dissim.." was used!).
* R/*.q: assign (dissim.., dist) class
2003-03-11 Martin Maechler <maechler@stat.math.ethz.ch>
* R/clara.q (clara): new argument `rngR' allowing to use R's RNG
instead of the primitive builtin randm().
* man/clara.Rd: example showing its use.
* src/clara.c (clara):
* R/pam.q (pam): new `keep.data' and DUP=FALSE in .Fortran
2003-03-05 Martin Maechler <maechler@stat.math.ethz.ch>
* R/agnes.q (agnes): use DUP = FALSE
* R/diana.q (diana): for both "twins()" routines --> 3x less memory!
2003-02-22 Martin Maechler <maechler@stat.math.ethz.ch>
* R/clara.q (clara): do *not* transpose the x[,] matrix anymore
* src/clara.c (clara): C code accesses un-transposed x[,] \
--> + 10% speed
2003-02-07 Martin Maechler <maechler@stat.math.ethz.ch>
* R/silhouette.R (silhouette.default): fixed k=2 case;
* man/silhouette.Rd: new argument `dmatrix'.
2003-02-06 Martin Maechler <maechler@stat.math.ethz.ch>
* man/plot.partition.Rd: new `main' argument (instead of "...")
* R/plotpart.q: passed to plot.silhouette().
2003-01-27 Martin Maechler <maechler@stat.math.ethz.ch>
* R/agnes.q (agnes): store `method' with object for as.hclust.twins()!
\ new logical args `keep.diss' and `keep.data'
* R/diana.q (diana): > if (!keep.diss), do not need "dis2"
* src/twins.f (twins):/ and don't copy the dist()s here.