forked from deepayan/lattice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
7437 lines (6245 loc) · 260 KB
/
ChangeLog
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
commit e2f44f54c40204737e6e7689904801fbea5df67d
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Thu May 18 18:07:18 2023 +0530
update version
M DESCRIPTION
commit d3dc7116a6d9e9457e5a2b0e1c5c8c11d70cd60a
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Thu May 4 13:47:06 2023 +0530
fix instances of partially matched argument names
M R/panel.smoothscatter.R
M R/xyplot.ts.R
M man/trellis.par.get.Rd
commit b5026367e98e25be50a398d76edf3c9e05034e46
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Wed Apr 5 21:45:30 2023 +0530
more specific className to avoid conflicts
M DESCRIPTION
M NAMESPACE
M R/legend.R
commit e89a8293a479531fe1f4ab355243387bc45ca2df
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Tue Apr 4 19:41:29 2023 +0530
wireframe examples + misc cleanup
M DESCRIPTION
M NAMESPACE
M NEWS.md
M R/settings.R
M man/panel.cloud.Rd
M tests/MASSch04.R
M tests/auto-key.R
M tests/barchart-width.R
M tests/fontsize.R
M tests/levelplot.R
M tests/shade-wireframe.R
M tests/wireframe.R
commit 7150755c4e0f433acd366edcc70fb1be01bbbfbb
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Tue Apr 4 17:20:37 2023 +0530
specify namespace
M R/bwplot.R
commit 653b3c9598aa07308d1f089e4ef48b4a4c18b041
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Tue Apr 4 17:06:15 2023 +0530
translation message updates
M inst/po/en@quot/LC_MESSAGES/R-lattice.mo
M po/R-de.po
M po/R-fr.po
M po/R-it.po
M po/R-ko.po
M po/R-lattice.pot
M po/R-pl.po
commit 130b7cdab1e2facfd5e1cbb93b76ef6b605af3f1
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Tue Apr 4 17:05:14 2023 +0530
better handling of degenerate data in panel.violin (https://github.com/deepayan/lattice/issues/27)
M R/bwplot.R
commit b9c47693d11d9f93529d1d23cf5da74e8de480f9
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Tue Apr 4 16:30:08 2023 +0530
allow defaults of 'auto.key' and 'grid' to be set using lattice.options()
M R/bwplot.R
M R/cloud.R
M R/densityplot.R
M R/histogram.R
M R/panel.superpose.R
M R/parallel.R
M R/qqmath.R
M R/splom.R
M R/xyplot.R
M man/USMortality.Rd
M man/cloud.Rd
M man/ethanol.Rd
M man/histogram.Rd
M man/lattice.options.Rd
M man/panel.densityplot.Rd
M man/panel.dotplot.Rd
M man/panel.functions.Rd
M man/panel.stripplot.Rd
M man/panel.superpose.Rd
M man/panel.xyplot.Rd
M man/qqmath.Rd
M man/singer.Rd
M man/splom.Rd
M man/xyplot.Rd
commit e687211913d4b49c018bcc9294d93b8f81a600a6
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Tue Apr 4 16:28:52 2023 +0530
bugfix: properly replace legend components in update.trellis() instead of trying to combine
M R/update.trellis.R
commit 0fe353f4560582c91efe5a4e1216febebf4289b2
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Tue Apr 4 16:27:03 2023 +0530
hard-code fill for default theme to bypass colorspace (breaks tests for a couple of revdeps)
M R/settings.R
commit fb2a990b22a41301754b8e484da95a14c3e09f8d
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Tue Apr 4 11:33:53 2023 +0530
include title when calculating key width in draw.key
M NAMESPACE
M R/legend.R
commit 5cd2d22369d4ec96f13a27794eff0ebdd2217d60
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Sat Apr 1 16:58:14 2023 +0530
use region colors from settings in panel.smoothScatter
M R/panel.smoothscatter.R
M man/panel.smoothScatter.Rd
M tests/levelplot.R
commit b403f3ef31b63bc4c93193b72a3ee7ea35859279
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Sat Apr 1 16:22:29 2023 +0530
change default wireframe shade colors to depend on region colors
M NAMESPACE
M R/settings.R
commit f59e060a25bc4ce0242ec97eb2914cc81b1b03b6
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Sat Apr 1 13:08:31 2023 +0530
updated NEWS
M NEWS.md
commit 3cf19a8be2cbf063e7563e27859985d8f31bded0
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Sat Apr 1 13:08:17 2023 +0530
fix typo in docs
M man/levelplot.Rd
commit dcb5dc835607d0188bccb7fbb7ac49ce314addf6
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Sat Apr 1 11:53:29 2023 +0530
finish doc updates for settings changes
M R/settings.R
M man/standard.theme.Rd
M man/trellis.par.get.Rd
commit 5e91497ee4c1fdac79f60d53d56e11282a984948
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Fri Mar 31 16:27:05 2023 +0530
doc updates (incomplete) for new theme settings
M R/settings.R
A man/standard.theme.Rd
M man/trellis.device.Rd
commit 111a69b7e5bebddd1f8e1ba5abbcdd2763677e27
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Fri Mar 31 13:08:09 2023 +0530
levelplot(region.type='contour') refinements
M DESCRIPTION
M R/levelplot.R
M man/panel.levelplot.Rd
M tests/levelplot.R
commit 11a93a6de80a3e2a646bd34e66051284e1e7b9bb
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Fri Mar 31 12:32:52 2023 +0530
remove unneeded file
D inst/COPYRIGHTS
commit 1cd2faf3c9fcf88b740550f2b84fc46c97f57bf7
Merge: 5f98e3c 7287855
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Fri Mar 31 12:31:42 2023 +0530
Merge branch 'jolars-filled-contour'
commit 72878555527e870438b3d79a0d7233b25d94ff2a
Merge: 5f98e3c f60d57c
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Fri Mar 31 12:30:34 2023 +0530
merge jolars:filled-contour (https://github.com/deepayan/lattice/pull/14) with some reformatting
commit 5f98e3c6da2277ed946163626f0da9b8860c55b7
Merge: 65527f4 c368aca
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Fri Mar 31 12:06:14 2023 +0530
Merge pull request #31 from zeileis/hcl-theme
New color defaults
commit c368acacb242e1916df7d3637fbc6b7bd067e30a
Merge: 3229981 65527f4
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Fri Mar 31 12:05:48 2023 +0530
Merge branch 'master' into hcl-theme
commit 32299819c9ed4fae64a996e5babe38fa39d73659
Author: Achim Zeileis <Achim.Zeileis@uibk.ac.at>
Date: Fri Mar 31 08:21:53 2023 +0200
14 instead of 12 YlGnBu colors for region
M R/settings.R
commit 65527f4b6d7f63da36d1fe2dd579e43a1c7206e2
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Fri Mar 31 11:50:06 2023 +0530
barchart width bugfix
M R/bwplot.R
commit 0220063112f978b9426ac5501812c339715b719e
Author: Achim Zeileis <Achim.Zeileis@uibk.ac.at>
Date: Fri Mar 31 02:57:21 2023 +0200
replace gray hex codes more intelligible named gray colors: #e8e8e8 -> gray90 / #f2f2f2 -> gray95 / #b2b2b2 -> gray70
M R/settings.R
commit e2dfba164fbd6d9dc4772458920cf8013fb131ac
Author: Achim Zeileis <Achim.Zeileis@uibk.ac.at>
Date: Fri Mar 31 02:08:57 2023 +0200
use named 'gray90' for reference instead of less accessible '#e8e8e8'
M R/settings.R
commit 998171614c4a1aff858ac774dc7077f09108cb59
Author: Achim Zeileis <Achim.Zeileis@uibk.ac.at>
Date: Fri Mar 31 02:05:45 2023 +0200
Symbol colors are still Okabe-Ito ordered slightly differently,
less exact match to old palette but hopefully somewhat more contrast
within palette.
Fill colors are set to NULL which defaults to using symbol colors
lightened with factor 0.4 (in HCL space).
M R/settings.R
commit 7f3e0566222870e60f06e48f1e4f907edf810d5d
Author: Achim Zeileis <Achim.Zeileis@uibk.ac.at>
Date: Fri Mar 31 01:05:18 2023 +0200
Import required functionality from grDevices (e.g., palette.colors)
from grDevices and hence make sure that at least R 4.0.0 is used.
Extend internal lower.saturation() function by space = "RGB" vs.
"HCL" argument. For HCL ideally colorspace::lighten() is used in
case colorspace is available (hence now in DESCRIPTION/Suggests).
In case colorspace is not available, for space = "HCL" an approximation
is used via grDevices::convertColor(..., to = "Luv") which only lowers
the "L" (luminance) coordinate but does not make sure that "C" (chroma)
is reduced to the maximum possible.
M DESCRIPTION
M NAMESPACE
M R/settings.R
commit f934cfe6e3d5ffb32a3d6a3624224816ebee1b17
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Thu Mar 30 16:26:28 2023 +0530
smarter auto.key in update.trellis
M R/bwplot.R
M R/update.trellis.R
M tests/auto-key.R
commit 169c8fd516b5fce910157dec557fc8ac56eb58e1
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Thu Mar 30 14:48:19 2023 +0530
auto.key and wireframe shade=TRUE tests
A tests/auto-key.R
A tests/shade-wireframe.R
M tests/wireframe.R
commit 2088637fc9fce5455bc626b4edbc75812b6feba5
Author: Achim Zeileis <Achim.Zeileis@uibk.ac.at>
Date: Wed Mar 29 13:05:28 2023 +0200
use hcl.colors - defaulting to viridis - instead of old-style RGB topo.colors/terrain.colors/rainbow
M man/level.colors.Rd
M man/levelplot.Rd
M man/panel.levelplot.Rd
M man/panel.pairs.Rd
commit efce0dec9e022485347fabb6b8181e5bc0c19d1d
Author: Achim Zeileis <Achim.Zeileis@uibk.ac.at>
Date: Wed Mar 29 13:04:14 2023 +0200
use palette.colors() rather than hcl.colors() for qualitative palette; avoid deutan() emulation in region colors
M R/settings.R
commit e57b70b07869a6bd7b97bc978b621074e2427e88
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Wed Mar 29 13:23:06 2023 +0530
refactor auto.key handling, smarter defaults for splom(), better default placement
M R/bwplot.R
M R/cloud.R
M R/densityplot.R
M R/histogram.R
M R/legend.R
M R/parallel.R
M R/qqmath.R
M R/settings.R
M R/splom.R
M R/update.trellis.R
M R/xyplot.R
commit 85c2e409fc447d251180d8399fdf6dc0049b9d72
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Wed Mar 29 10:47:24 2023 +0530
updated default theme with hcl-based palette
M NAMESPACE
M NEWS.md
M R/settings.R
commit 9ea4be13e392552f174849f32f29dfc42225d754
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Tue Mar 28 21:34:59 2023 +0530
translation file updates
M inst/po/en@quot/LC_MESSAGES/R-lattice.mo
M po/R-de.po
M po/R-fr.po
M po/R-it.po
M po/R-ko.po
M po/R-lattice.pot
M po/R-pl.po
commit 26893d5da7ac9c1969fac720ad4a61df87122bae
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Tue Mar 28 21:02:37 2023 +0530
Explicit markdown formatting for NEWS
M NEWS.md
commit 38ac50fa8e851b290e8c2e13cfa5ccb51673e306
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Tue Mar 28 20:52:35 2023 +0530
Improve NEWS entry language
M NEWS.md
commit d8d9d23d6f231ca7523515a83d536e50919c1f13
Merge: 9dd2a5c 1de2bb1
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Tue Mar 28 20:44:07 2023 +0530
Merge branch 'master' of github.com:deepayan/lattice
commit 9dd2a5c2c2f5087b92e509af8831fdc020892fa7
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Tue Mar 28 20:43:00 2023 +0530
added new 'smooth' argument in panel.xyplot() as a preferred alternative to using 'type'
M R/xyplot.R
M man/panel.xyplot.Rd
commit 1de2bb1537a9303c826df691504aacfe46aa34e9
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Tue Mar 28 18:08:27 2023 +0530
better auto.key behaviour for xyplot, change default placement
M DESCRIPTION
M R/bwplot.R
M R/cloud.R
M R/densityplot.R
M R/histogram.R
M R/parallel.R
M R/qqmath.R
M R/splom.R
M R/update.trellis.R
M R/xyplot.R
commit 28e1b2a2aedbc9ad85d2831b1eea6927ab1b9b3f
Merge: 4e77c57 81081e7
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Tue Mar 28 16:51:12 2023 +0530
Merge branch 'master' of github.com:deepayan/lattice
commit 4e77c57d4a2ae91930312c9e907c459f0488bd7b
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Tue Mar 28 16:50:52 2023 +0530
update NEWS and CITATION
R099 NEWS NEWS.md
M inst/CITATION
commit 59fe587cf2d5d2439d5c7942f640f9b7ad1455f3
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Tue Mar 28 16:07:16 2023 +0530
update version and date
M DESCRIPTION
M NEWS
commit e84f0e0b993a9d93f94d8c539f5ff587c5467df8
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Tue Mar 28 15:46:07 2023 +0530
rename private functions that looked like methods
M R/bwplot.R
M R/histogram.R
M R/interaction.R
M R/miscellaneous.R
M R/qq.R
M R/qqmath.R
M R/splom.R
M R/xyplot.R
M man/panel.pairs.Rd
commit f2555c4a6b813e2b6556a142af3b240d10a0871f
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Tue Mar 28 14:25:57 2023 +0530
(very) slightly better custom barchart widths
M R/bwplot.R
A tests/barchart-width.R
commit 81081e73ec3f5a5b8f0bf423ea1623c42964b732
Merge: 880dfb0 047b3bb
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Fri Feb 17 11:28:00 2023 +0530
Merge pull request #28 from stefaneng/stefaneng-vector-args-violinplot.
Add vector argument support to panel.violinplot
commit 047b3bb7873069e73c821178d89e4e0b69492b12
Author: Stefan Eng <stefaneng@mednet.ucla.edu>
Date: Thu Feb 16 09:47:44 2023 -0800
Better error handling
M R/bwplot.R
commit d73258e5cb2fccdd48c60845c96c2749bbaf53f3
Author: Stefan Eng <stefaneng@mednet.ucla.edu>
Date: Thu Feb 16 09:21:07 2023 -0800
Allow vector arguments for each group in violinplot
M R/bwplot.R
commit 880dfb08b145ef193318eda06deb19397d2497f6
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Tue Oct 12 20:50:41 2021 +0530
make grid unit optimization optional (through lattice.options())
M DESCRIPTION
M R/layout.R
M R/settings.R
M man/lattice.options.Rd
commit 7a50e25c6276af10875ffe1aa742070222e7f798
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Tue Oct 12 20:15:01 2021 +0530
added regression test for levelplot colorkey
M tests/levelplot.R
commit d495acd3b5436af699b64f0252fa306e35324f2a
Merge: d30c3d6 cef06b5
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Tue Oct 12 18:57:19 2021 +0530
Merge pull request #22 from bastistician/fix_colorkey_labels.
Ensure that colorkey labels are in sync with 'labels$at'
commit cef06b50aa1c5e4111e91f10ffa398c201c29f21
Author: Sebastian Meyer <seb.meyer@fau.de>
Date: Mon Oct 11 18:11:12 2021 +0200
ensure that colorkey labels are in sync with 'labels$at'
M R/legend.R
M tests/levelplot.R
commit d30c3d692ffe92b4115f946e8eb0e883da2eb9a1
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Fri Oct 8 21:47:59 2021 +0530
improve speed of multipage plots with relation != 'same'
M DESCRIPTION
M R/layout.R
commit aa265adae89e9abf5cbd4ea5c9f160afa6a7c0ba
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Sat Sep 18 15:04:01 2021 +0530
fix item formatting errors in Rd
M DESCRIPTION
M man/axis.default.Rd
M man/make.groups.Rd
M man/oneway.Rd
M man/trellis.par.get.Rd
commit 1920eb4700c5590ba2b94796e55d16aed11d05b1
Author: Paul Murrell <paul@stat.auckland.ac.nz>
Date: Mon May 17 11:02:23 2021 +1200
added "grid" vignette containing examples of using raw grid with lattice
A vignettes/grid.Rnw
commit 7963aa428e8aa0941bc432e216ccc76cf270f394
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Wed Apr 28 19:50:31 2021 +0530
bump version
M DESCRIPTION
commit 2ae6b17d0d405e812a05098e17c2644243a25f0e
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Wed Apr 28 19:35:51 2021 +0530
add fill argument to panel.3dscatter (https://github.com/deepayan/lattice/issues/20)
M R/cloud.R
M man/panel.cloud.Rd
commit 9c44bc47637586391342c29b8352d72a4f29dd83
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Sat Apr 24 22:29:23 2021 +0530
updated French translations (from Philippe Grosjean)
M inst/po/en@quot/LC_MESSAGES/R-lattice.mo
M inst/po/fr/LC_MESSAGES/R-lattice.mo
M po/R-de.po
M po/R-fr.po
M po/R-it.po
M po/R-ko.po
M po/R-lattice.pot
M po/R-pl.po
commit 21894257e9bdcc94370de328307503b557eed71e
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Wed Mar 17 12:52:07 2021 +0530
clarify behaviour of panel.axis() when 'labels' specified without
'at', and issue a warning (see
https://stat.ethz.ch/pipermail/r-help/2021-March/470528.html)
M R/axis.R
M man/panel.axis.Rd
commit f62ea761b03e89ac0d2d5b98ff9efd9392d88f51
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Tue Mar 16 11:02:29 2021 +0530
updated French translations (from Philippe Grosjean)
M inst/po/en@quot/LC_MESSAGES/R-lattice.mo
M inst/po/fr/LC_MESSAGES/R-lattice.mo
M po/R-fr.po
M po/R-lattice.pot
commit d425f4c9f141298dfb521ccb86907a4c3538158b
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Thu May 14 17:40:17 2020 +0530
remove debugging code
M R/bwplot.R
commit 1288848770d9ea27ca7616696fa28925c2a4f503
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Thu May 14 17:34:52 2020 +0530
bugfix: fix prepanel calculations for stacked barchart with missing values
M R/bwplot.R
commit bb2202cd370b1c7e8c66dbd901a8de390644acf6
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Thu May 14 12:45:53 2020 +0530
added support for title in colorkey
M DESCRIPTION
M R/legend.R
M R/print.trellis.R
M R/settings.R
M man/draw.colorkey.Rd
M man/levelplot.Rd
A tests/colorkey-title.R
commit 78a868a5d1ee540176fc63a1089fb67836dec1c0
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Mon May 11 18:54:02 2020 +0530
bugfix: make 'open' triangular ends in colorkey work for all values of 'space', not only 'right'
M R/legend.R
commit f4f809f2c1fec845f99b72f7c7c970099869b422
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Fri May 1 12:22:38 2020 +0530
added Italian translation
M inst/po/en@quot/LC_MESSAGES/R-lattice.mo
A inst/po/it/LC_MESSAGES/R-lattice.mo
A po/R-it.po
M po/R-lattice.pot
commit cda4f8b48e55442eeec1a658e16b7b2cd7e4de81
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Wed Apr 22 14:45:52 2020 +0530
improved call component of trellis objects
M R/bwplot.R
M R/cloud.R
M R/densityplot.R
M R/histogram.R
M R/levelplot.R
M R/parallel.R
M R/qq.R
M R/qqmath.R
M R/rfs.R
M R/shingle.R
M R/splom.R
M R/tmd.R
M R/xyplot.R
M R/xyplot.ts.R
A tests/call.R
commit d3d4ca2832cd253dac0168cd8d28bce4ec8e226d
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Tue Apr 14 17:48:32 2020 +0530
updated minor version, fixed behaviour of abline argument in panel.xyplot() (in a backwards-incompatible way)
M DESCRIPTION
M R/xyplot.R
M man/panel.xyplot.Rd
commit f4af1fccf2e4114257a12db521fac6038c36758a
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Thu Apr 2 16:25:15 2020 +0530
revert abline change as it might break current usage; leave for major update
M .Rbuildignore
M R/xyplot.R
commit fdeeb4f0f9c3480525ec440e5a41e388040a1a18
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Thu Apr 2 16:05:59 2020 +0530
delete SvnLog
D SvnLog
commit 3f47ebf2f2c98ac38476f4c46b54fa459c5f8889
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Thu Apr 2 16:05:36 2020 +0530
merge SvnLog into ChangeLog
M .Rbuildignore
M ChangeLog
M DESCRIPTION
M SvnLog
commit 3228d8a861c75d2b3375ef708511d0a7ce4f65f4
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Thu Apr 2 15:51:24 2020 +0530
cleanup translation generation and update translations
M inst/po/de/LC_MESSAGES/R-lattice.mo
M inst/po/en@quot/LC_MESSAGES/R-lattice.mo
M inst/po/fr/LC_MESSAGES/R-lattice.mo
M inst/po/ko/LC_MESSAGES/R-lattice.mo
M inst/po/pl/LC_MESSAGES/R-lattice.mo
D po/R-en@quot.po
M po/R-lattice.pot
M update.sh
commit 2654be1ad4e68583615b6066573fdede8568a3ce
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Thu Apr 2 15:50:58 2020 +0530
added test file
A tests/summary.R
commit 2d852c7b94cd61fce8a4d38d7658f71a5097a02a
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Thu Apr 2 15:49:25 2020 +0530
bugfix - named vector now works for panel.xyplot(abline = )
M R/xyplot.R
commit 938b5dbfca1f669c239f3cc12cc15b1f54a1e428
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Thu Apr 2 15:30:38 2020 +0530
update translations
M po/R-de.po
M po/R-en@quot.po
M po/R-fr.po
M po/R-ko.po
M po/R-lattice.pot
M po/R-pl.po
commit 649bec5d74a576a94d35b8a003de427d43392e53
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Thu Apr 2 15:11:37 2020 +0530
document triangular ends in colorkey, other improvements
M man/draw.colorkey.Rd
M man/levelplot.Rd
commit 96accbfe80285124e46ab6276f36daef58bd8999
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Thu Apr 2 15:09:37 2020 +0530
moved to using Authors@R
M DESCRIPTION
commit 57757a0d68b3bc7a0034d2d09c3c26cf93e245fa
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Sun Feb 16 12:37:18 2020 +0530
update broken trellis project URL to wayback machine archive
M man/Lattice.Rd
commit 73a7c8c2fb1adb68dc4b7b5b77b4e18e57b28ae0
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Sun Feb 16 12:18:09 2020 +0530
minor bugfix related to vector pch in panel.bwplot
M R/bwplot.R
commit bfb29ec9411edb14c76459c65bc940e6c7885064
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Mon Nov 5 15:08:12 2018 +0530
preliminary support for open-ended triangular extensions in colorkey (no docs yet)
M DESCRIPTION
M R/legend.R
commit 4d715be5a82934bb09291b9f1bc6701f08c0072f
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Thu Nov 1 14:19:16 2018 +0530
fix length-1 condition bug, and prepare for release
M DESCRIPTION
M R/miscellaneous.R
M R/print.trellis.R
M R/xyplot.R
commit bb21fea78cf0a42b7fa0d810cc54e1d518934f02
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Thu Nov 1 12:46:53 2018 +0530
deleted no-longer-necessary fast replacement for quantile
M R/qqmath.R
commit c988bbaf89d08fa6b605d28d451eeba5063bc034
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Mon Jul 9 17:03:14 2018 +0530
bugfix in panel.abline for #8
M DESCRIPTION
M R/panels.R
commit 1b9c6481fd1df33362d49e101c7bcb8b3429c55d
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Thu Mar 23 20:27:24 2017 +0530
increased default 'n' in densityplot() to 512
M R/densityplot.R
M man/histogram.Rd
commit f43160cacf03e8b99813260ce8f5f279ab2b7fec
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Thu Feb 16 14:50:40 2017 +0530
Added URL and examples
M man/USMortality.Rd
commit 2a83edec80bc2b6089aa44f724f7e5c95a0afdb1
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Wed Feb 15 19:48:08 2017 +0530
bugfix: catch font parameters in larrows()
M R/miscellaneous.R
commit 7a96ded29e454b1c581f70cc20d15647675d57f5
Author: Deepayan Sarkar <deepayan.sarkar@gmail.com>
Date: Wed Feb 15 19:45:56 2017 +0530
new dataset
M DESCRIPTION
A data/USMortality.rda
A data/USRegionalMortality.rda
A man/USMortality.Rd
------------------------------------------------------------------------
SVN -> GIT (https://github.com/deepayan/lattice)
------------------------------------------------------------------------
r776 | deepayan | 2016-11-17 16:30:41 +0530 (Thu, 17 Nov 2016) | 1 line
Changed paths:
M /pkg/DESCRIPTION
M /pkg/R/bwplot.R
M /pkg/R/cloud.R
M /pkg/R/miscellaneous.R
Support quote()-d labels in more places (see exchange with Martin
Maechler ~Nov 17). Not sure about possible side-effects.
------------------------------------------------------------------------
r775 | deepayan | 2016-09-06 17:44:25 +0530 (Tue, 06 Sep 2016) | 1 line
Changed paths:
M /pkg/DESCRIPTION
M /pkg/R/bwplot.R
M /pkg/man/Lattice.Rd
M /pkg/po/R-lattice.pot
minor fixes
------------------------------------------------------------------------
r774 | deepayan | 2016-09-06 16:44:14 +0530 (Tue, 06 Sep 2016) | 1 line
Changed paths:
M /pkg/R/miscellaneous.R
misc fixes
------------------------------------------------------------------------
r773 | deepayan | 2016-09-06 16:39:39 +0530 (Tue, 06 Sep 2016) | 1 line
Changed paths:
M /pkg/man/panel.pairs.Rd
allow diag.panel to be NULL (doc)
------------------------------------------------------------------------
r772 | deepayan | 2016-09-06 16:35:43 +0530 (Tue, 06 Sep 2016) | 1 line
Changed paths:
M /pkg/R/splom.R
allow diag.panel to be NULL (actually any non-function) to suppress it
------------------------------------------------------------------------
r771 | deepayan | 2016-09-06 16:30:18 +0530 (Tue, 06 Sep 2016) | 1 line
Changed paths:
M /pkg/DESCRIPTION
updated description
------------------------------------------------------------------------
r770 | deepayan | 2015-07-07 18:52:53 +0530 (Tue, 07 Jul 2015) | 1 line
Changed paths:
M /pkg/DESCRIPTION
M /pkg/NAMESPACE
M /pkg/man/Lattice.Rd
Fixes to make CMD check happier
------------------------------------------------------------------------
r769 | deepayan | 2015-06-01 10:59:09 +0530 (Mon, 01 Jun 2015) | 1 line
Changed paths:
M /pkg/DESCRIPTION
M /pkg/man/Lattice.Rd
updated CRAN URL
------------------------------------------------------------------------
r768 | deepayan | 2015-03-30 12:39:09 +0530 (Mon, 30 Mar 2015) | 1 line
Changed paths:
M /pkg/DESCRIPTION
M /pkg/inst/po/de/LC_MESSAGES/R-lattice.mo
M /pkg/po/R-de.po
M /pkg/po/R-lattice.pot
updated german translation
------------------------------------------------------------------------
r767 | deepayan | 2015-02-20 19:23:14 +0530 (Fri, 20 Feb 2015) | 1 line
Changed paths:
M /pkg/inst/po/de/LC_MESSAGES/R-lattice.mo
M /pkg/inst/po/en@quot/LC_MESSAGES/R-lattice.mo
M /pkg/inst/po/fr/LC_MESSAGES/R-lattice.mo
M /pkg/inst/po/ko/LC_MESSAGES/R-lattice.mo
M /pkg/inst/po/pl/LC_MESSAGES/R-lattice.mo
M /pkg/po/R-de.po
M /pkg/po/R-en@quot.po
M /pkg/po/R-fr.po
M /pkg/po/R-ko.po
M /pkg/po/R-lattice.pot
M /pkg/po/R-pl.po
Korean translation update
------------------------------------------------------------------------
r766 | deepayan | 2015-02-17 01:20:30 +0530 (Tue, 17 Feb 2015) | 1 line
Changed paths:
M /pkg/R/bwplot.R
M /pkg/R/cloud.R
M /pkg/R/densityplot.R
M /pkg/R/interaction.R
M /pkg/R/layout.R
M /pkg/R/legend.R
M /pkg/R/miscellaneous.R
M /pkg/R/panels.R
M /pkg/R/print.trellis.R
M /pkg/R/scales.R
M /pkg/R/settings.R
clean up CMD check notes with suppressLocalUnused=FALSE
------------------------------------------------------------------------
r765 | deepayan | 2014-12-31 10:09:55 +0530 (Wed, 31 Dec 2014) | 1 line
Changed paths:
M /pkg/man/xyplot.Rd
mention simpleTheme() in documentation for 'auto.key'
------------------------------------------------------------------------
r764 | deepayan | 2014-12-31 10:09:27 +0530 (Wed, 31 Dec 2014) | 1 line
Changed paths:
M /pkg/R/bwplot.R
M /pkg/R/densityplot.R