forked from cran/SpatialExtremes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
2992 lines (1828 loc) · 78.4 KB
/
Copy pathChangeLog
File metadata and controls
2992 lines (1828 loc) · 78.4 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
2018-07-02 11:52 mathieu_ribatet
* NAMESPACE: Import model.frame and na.pass from 'stats'
2018-06-20 11:28 mathieu_ribatet
* R/utils.R, src/utils.c: Allows NA values in predictions. Thanks
to Joel Zeder for finding this gap ;-)
2018-05-28 11:15 mathieu_ribatet
* NAMESPACE, R/methods.R, R/predict.R, R/psplines.R,
man/predict.Rd, man/print.Rd, vignettes/SpatialExtremesGuide.Rnw:
Rename pspline methods to pspline2 (issue with another package)
2018-05-28 11:09 mathieu_ribatet
* R/modeldef.R: Fix a bug with the design matrix when there are
missing values. Thanks to Joel Zeder!
2018-05-28 09:10 mathieu_ribatet
* src/maxStableExactSimulation.c: Fix a bug for the exact
simulation from Schlather process. Thanks to Alec Stephenson for
this bug hunt!!!
2018-01-05 12:58 mathieu_ribatet
* DESCRIPTION, NEWS: Fix some warnings that appear with a new
release of R.
2018-01-05 12:56 mathieu_ribatet
* R/selection.R, R/smith.R, vignettes/SpatialExtremes.sty,
vignettes/SpatialExtremesGuide.Rnw: Fix some warnings that appear
with a new release of R.
2017-12-12 11:17 mathieu_ribatet
* src/condsimMaxStab.c: Free some "unfreed" objects--sorry about
that memory ;-)
2017-09-15 11:16 mathieu_ribatet
* DESCRIPTION, NEWS, R/modelChecking.R, R/simmaxstab.R: Fix a bug
with the simulation from geometric processes. Thanks Zhuo Wang!
2017-08-24 15:14 mathieu_ribatet
* R/simmaxstab.R: Fix a bug in allocation
2017-08-24 14:56 mathieu_ribatet
* man/concprob.Rd: Update the reference article
2017-08-24 14:55 mathieu_ribatet
* man/concprob.Rd: Change the example (now nicer)
2017-08-24 14:46 mathieu_ribatet
* ChangeLog: Update ChangeLog
2017-08-24 14:44 mathieu_ribatet
* DESCRIPTION, NEWS, src/madogram.c, src/pairwiselik.c: Use OpenMP
when it does speed things (pairwise likelihood)
2017-08-21 14:28 mathieu_ribatet
* R/simmaxstab.R, src/header.h, src/init.c,
src/maxStableExactSimulation.c: Allows for exact simulation for
all max-stable models (except geometric)
2017-08-20 11:41 mathieu_ribatet
* DESCRIPTION: Summary: Spelling
2017-08-18 13:03 mathieu_ribatet
* ChangeLog: Update ChangeLog
2017-08-18 12:50 mathieu_ribatet
* NEWS: Update NEWS
2017-08-18 12:47 mathieu_ribatet
* DESCRIPTION, NAMESPACE, R/brownresnick.R, R/concurrence.R,
R/condSimMaxStab.R, R/conditionalSim.R, R/copula.R, R/extcoeff.R,
R/extremalt.R, R/fitcovmat.R, R/geomgauss.R, R/kriging.R,
R/latentVariable.R, R/madogram.R, R/maxLinear.R, R/randomlines.R,
R/schlather.R, R/schlatherind.R, R/simgaussproc.R,
R/simmaxstab.R, R/smith.R, R/spatgev.R, R/standardErrors.R,
R/univfit.R, R/utils.R, src/Makevars, src/header.h, src/init.c:
Finally the package now registers native routine (what a job!!!)
2017-08-18 12:46 mathieu_ribatet
* R/circulant.R: Remove an empty R file
2017-08-17 13:29 mathieu_ribatet
* man/SpatialExtremes-package.Rd: Remove a non existing URL
2017-08-17 13:28 mathieu_ribatet
* src/init.c: Add registration of C code as now required by CRAN
2017-08-17 13:28 mathieu_ribatet
* src/utils.c: Remove pragma parallel instruction (slows my code
:-()
2017-08-17 13:26 mathieu_ribatet
* R/simmaxstab.R: A small fix
2017-08-17 12:32 mathieu_ribatet
* R/exploratoryAnalysis.R: Fix a bug in the legend of symbol when
using mean or median
2017-08-16 14:00 mathieu_ribatet
* vignettes/SpatialExtremes.sty,
vignettes/SpatialExtremesGuide.Rnw, vignettes/layout.sty: Rename
layout.sty to SpatialExtremes.sty as I got an email about this
from CRAN
2017-08-16 13:59 mathieu_ribatet
* man/fitmaxstab.Rd: Minor change
2017-08-16 13:58 mathieu_ribatet
* src/concurrence.c, src/covariance.c, src/direct.c,
src/fitcovmat.c, src/header.h, src/latentVariable.c,
src/madogram.c, src/maxStableExactSimulation.c,
src/pairwiselik.c, src/weightedPairwiselik.c: Removing pragma
parallel for instruction since it slows the code (at least on
MacOS). Seems like I'm not very good at parallelizing my code :-(
2017-08-16 13:55 mathieu_ribatet
* R/exploratoryAnalysis.R: Try to fix the legend anotation when
using which != "gev"
2017-01-24 15:32 mathieu_ribatet
* DESCRIPTION: Dummy modification (request from R-forge to check a
problem)
2017-01-18 12:01 mathieu_ribatet
* src/utils.c: small improvement
2017-01-11 08:28 mathieu_ribatet
* DESCRIPTION, R/concurrence.R, R/simmaxstab.R, man/concprob.Rd,
man/concurrencemap.Rd, src/concurrence.c, src/header.h: Add the
exact simulation for max-stable processes and a fix for
Brown-Resnick processes.
Allows for parallelization throughout the code whenever possible
Add the computation of standard errors for the concurrence
probabilities
2016-11-07 15:48 mathieu_ribatet
* NAMESPACE, R/concurrence.R, R/simmaxstab.R, man/concprob.Rd,
src/brownResnick.c, src/concurrence.c, src/copula.c,
src/direct.c, src/extcoeff.c, src/extremalt.c, src/geomgauss.c,
src/kriging.c, src/latentVariable.c, src/madogram.c,
src/maxStableExactSimulation.c, src/pairwiselik.c,
src/schlather.c, src/schlatherind.c, src/univllik.c, src/utils.c,
src/weightedPairwiselik.c: Try to (re)use openmp with the package
2016-11-07 09:52 mathieu_ribatet
* src/covariance.c, src/direct.c, src/fitcovmat.c,
src/maxStableExactSimulation.c, src/pairwiselik.c: Working on
exact simulation for max-stable processes and (re)implementation
of openmp support
2016-11-04 16:41 mathieu_ribatet
* R/simmaxstab.R, src/header.h, src/maxStableExactSimulation.c:
Exact simulation for Brown--Resnick processes are now available
2016-11-04 16:40 mathieu_ribatet
* src/covariance.c, src/direct.c: Minor speed optimization
2016-10-18 15:33 mathieu_ribatet
* R/modelChecking.R: Just add a short comment
2016-10-18 15:15 mathieu_ribatet
* R/modelChecking.R: Summary: Faster version (and correct!) version
for the bootstrap
confidence intervals.
2016-10-15 09:46 mathieu_ribatet
* src/maxStableExactSimulation.c: Just a small change to allow for
compilation. The code is still broken though.
2016-10-14 15:44 mathieu_ribatet
* R/utils.R: Summary: Fix a bug with handling NA values in the
switch to unit
Frechet margins using the empirical CDF. Thanks to Kate Robinson
Saunders for this!!!
2016-10-14 14:13 mathieu_ribatet
* R/simmaxstab.R: ## Lines starting with '## ' will be removed from
the log message.
## File(s) to commit recursively:
## pkg/src/maxStableExactSimulation.c
Start working on exact simulation for max-stable processes
2016-10-14 14:07 mathieu_ribatet
* src/header.h: Start working on exact simulation for max-stable
processes
2016-10-14 14:07 mathieu_ribatet
* src/maxStableExactSimulation.c: Start working on exact simulation
for max-stable processes
2016-10-14 14:04 mathieu_ribatet
* R/modelChecking.R: Faster version for the bootstrap confidence
intervals.
2016-10-14 14:04 mathieu_ribatet
* DESCRIPTION: Update my email
2016-08-31 11:09 mathieu_ribatet
* src/pairwiselik.c, src/weightedPairwiselik.c: Better handling of
the pairwise likelihood for the Smith model
2015-10-15 08:16 mathieu_ribatet
* R/concurrence.R: Summary: Add the option to get personalized x
and y labels for the
axis
2015-06-10 06:13 mathieu_ribatet
* man/symbolplot.Rd: Summary: Document argument scale in
symbolplot.
2015-06-09 14:54 mathieu_ribatet
* R/exploratoryAnalysis.R:
2015-06-09 12:54 mathieu_ribatet
* R/concurrence.R: Summary: Diverging version between computers.
Grrrrr
2015-06-09 12:47 mathieu_ribatet
* R/concurrence.R: Summary: Diverging version between computers.
Grrrrr
2015-06-09 09:14 mathieu_ribatet
* man/USHCNTemp.Rd: Summary: Add require(maps) in the example
2015-06-08 18:03 mathieu_ribatet
* R/plots.R: Summary: Remove printing info while browsing the
Markov chain
2015-06-08 17:27 mathieu_ribatet
* man/concurrencemap.Rd: Faster example
2015-06-08 17:26 mathieu_ribatet
* man/windgust.Rd: Doc. for wind gust data set
2015-06-08 17:26 mathieu_ribatet
* DESCRIPTION, NAMESPACE, R/exploratoryAnalysis.R: Some update for
EVA
2015-06-08 16:19 mathieu_ribatet
* R/concurrence.R: Summary: Fix a bug with plot.border
2015-06-08 15:22 mathieu_ribatet
* R/extremalt.R, R/madogram.R: Fix minor bugs
2015-06-08 15:22 mathieu_ribatet
* inst/Copyright: Move copyright to the inst folder
2015-06-08 15:21 mathieu_ribatet
* Copyright: Move copyright to the inst folder
2015-06-08 15:21 mathieu_ribatet
* inst: Add the inst folder
2015-06-08 15:13 mathieu_ribatet
* man/concurrencemap.Rd: Summary: Change the documentation to get
faster executing example
2015-06-08 15:05 mathieu_ribatet
* data/netherlands.RData: Remove the gadm Netherlands data set
2015-06-08 15:05 mathieu_ribatet
* data/USHCNTemp.RData, man/USHCNTemp.Rd: Add the USHCN temperature
data set
2015-06-08 15:02 mathieu_ribatet
* man/logLik.maxstab.Rd: Unify log likelihood extraction methods
into a single Rd file
2015-06-08 15:01 mathieu_ribatet
* man/concurrencemap.Rd: Documenting the concurrencemap function
2015-06-08 15:00 mathieu_ribatet
* man/logLik.Rd: Unify log likelihood extraction methods into a
single Rd file
2015-06-08 15:00 mathieu_ribatet
* man/predict.Rd: Unify predicting methods into a single Rd file
2015-06-08 15:00 mathieu_ribatet
* man/predict.copula.Rd, man/predict.maxstab.Rd,
man/predict.pspline.Rd, man/predict.spatgev.Rd: Unify predictin
methods into a single Rd file
2015-06-08 14:59 mathieu_ribatet
* man/print.Rd: Unify printing methods into a single Rd file
2015-06-08 14:59 mathieu_ribatet
* man/print.copula.Rd, man/print.latent.Rd, man/print.maxstab.Rd,
man/print.pspline.Rd, man/print.spatgev.Rd: Unify printing
methods into a single Rd file
2015-06-08 14:59 mathieu_ribatet
* man/windgust.Rd: Add the wind gust data set
2015-06-08 14:58 mathieu_ribatet
* DESCRIPTION, R/concurrence.R, R/exploratoryAnalysis.R,
R/predict.R, man/anova.Rd, man/internals.Rd, man/rainfall.Rd,
man/swissalt.Rd, man/symbolplot.Rd: Minor changes
2015-06-08 12:34 mathieu_ribatet
* R/concurrence.R: Add plot.border option to concarea
2015-06-08 11:54 mathieu_ribatet
* DESCRIPTION: Update description file (not finalized though)
2015-06-08 11:54 mathieu_ribatet
* R/exploratoryAnalysis.R: Fix partial arguments matching
2015-06-08 11:54 mathieu_ribatet
* src/direct.c, src/latentVariable.c, src/simBrownResnick.c,
src/simextremalt.c, src/simgeometric.c, src/simschlather.c,
src/standardErrors.c: Fix compiler complaints/warnings
2015-06-08 11:53 mathieu_ribatet
* man/symbolplot.Rd: Fix argument partial match
2015-06-08 11:53 mathieu_ribatet
* R/swiss.R: Fix non ASCII character
2015-06-05 11:29 mathieu_ribatet
* R/methods.R: Summary: Fix a typo (white spaces) in printing
spatgev objects
2015-06-02 15:58 mathieu_ribatet
* data/wind.RData: Update the wind gust data set
2015-05-29 08:35 mathieu_ribatet
* R/exploratoryAnalysis.R: Summary: Try to improve symbolplot to
allow for a legend. Not yet done!
2015-05-28 21:17 mathieu_ribatet
* R/swiss.R: Fix the aspect ratio so that Switzerland will never be
deformed ;-)
2015-05-28 21:17 mathieu_ribatet
* data/wind.RData: Add wind gust data set
2015-05-28 21:16 mathieu_ribatet
* R/exploratoryAnalysis.R, data/netherlands.RData,
man/symbolplot.Rd: Add symbol plots
2015-05-28 18:29 mathieu_ribatet
* data/wind.RData: Add wind gust data set
2015-05-28 18:29 mathieu_ribatet
* DESCRIPTION, R/concurrence.R, R/utils.R: Work in progress for
concurrence cell area
2015-05-28 15:13 mathieu_ribatet
* vignettes/SpatialExtremesGuide.Rnw: Summary: One keyword per
\VignetteKeyword macro
2015-05-28 14:59 mathieu_ribatet
* man/condrmaxstab.Rd, src/header.h: Small edits
2015-05-28 14:58 mathieu_ribatet
* R/concurrence.R, man/concprob.Rd, src/concurrence.c: Add code for
the concurrence probabilities.
2015-05-28 14:57 mathieu_ribatet
* R/brownresnick.R, R/extremalt.R, R/schlather.R: Add the extremal
concurrence probability function to the fitted
max-stable processes.
2015-05-27 11:31 mathieu_ribatet
* R/condSimMaxStab.R: Small editing + fix
2014-01-14 10:15 mathieu_ribatet
* R/fitcovmat.R: Change starting values for the extremal-t process
2014-01-14 10:15 mathieu_ribatet
* R/condSimMaxStab.R, src/condsimMaxStab.c, src/header.h: Add
routines for conditional simulation from extremal-t processes
2014-01-14 10:14 mathieu_ribatet
* src/pairwiselik.c: Small improvements (factorize expression to
speed up code)
2013-06-06 07:27 mathieu_ribatet
* R/selection.R: Better formatting of the anova table
2013-06-04 18:48 mathieu_ribatet
* R/brownresnick.R, R/extremalt.R, R/geomgauss.R, R/schlather.R,
R/schlatherind.R, R/smith.R, R/spatgev.R, R/standardErrors.R: Fix
a bug with recent changes on standard errors and missing values.
Now fixed!
2013-06-04 16:14 mathieu_ribatet
* src/standardErrors.c: Fix a bug!
2013-06-03 11:48 mathieu_ribatet
* R/utils.R: Allows for missing values
2013-06-03 11:47 mathieu_ribatet
* src/madogram.c: Allows for missing values in madogram (but *not*
to the lambda madogram)
2013-06-03 11:47 mathieu_ribatet
* R/modelChecking.R: Allows for missing values in model checking of
max-stable processes
2013-06-03 11:46 mathieu_ribatet
* R/madogram.R: Allows for missing values in madogram (but *not* to
the lambda madogram)
2013-05-30 15:28 mathieu_ribatet
* DESCRIPTION: update version number
2013-03-04 10:21 mathieu_ribatet
* ChangeLog, DESCRIPTION, NEWS: Update the description, news and
changlog files for release 2.0-0
2013-03-04 10:13 mathieu_ribatet
* src/latentVariable.c: Fix a bug related to the mean of the prior
distribution assumed on the regression parameters!
2013-03-04 10:06 mathieu_ribatet
* R/condSimMaxStab.R: Fix a bug when no conditional simulation were
performed.
2013-03-04 09:58 mathieu_ribatet
* R/latentVariable.R: Missing values are now supported.
2013-03-04 09:57 mathieu_ribatet
* R/brownresnick.R, R/extremalt.R, R/fitmaxstable.R, R/geomgauss.R,
R/methods.R, R/profile.R, R/schlather.R, R/schlatherind.R,
R/smith.R, R/spatgev.R, R/standardErrors.R, R/starting.values.R,
R/univfit.R, man/TIC.Rd, man/condmap.Rd, man/covariance.Rd,
man/fitmaxstab.Rd, man/fitspatgev.Rd, man/map.Rd,
src/pairwiselik.c, src/spatgevlik.c, src/standardErrors.c,
src/standardErrorsCommonPart.c, src/univllik.c, src/utils.c,
src/weightedPairwiselik.c, vignettes/SpatialExtremesGuide.Rnw:
Missing values are now supported. Change the way standard errors
are computed.
2013-01-28 10:49 mathieu_ribatet
* R/zzz.R: .First.lib() is no longer useful.
2013-01-28 10:48 mathieu_ribatet
* DESCRIPTION: Forgot the authorship in the DESCRIPTION file.
2013-01-24 07:36 mathieu_ribatet
* src/fft.c, src/header.h: Add fft routine since they do not belong
to the R API...
2013-01-23 12:30 mathieu_ribatet
* DESCRIPTION, src/header.h: Add the fft routine as they do not
belong to the R API.
2013-01-23 12:29 mathieu_ribatet
* Copyright, src/fft.c: Add the fft routine as they do not belong
to the R API
2012-11-27 08:11 mathieu_ribatet
* R/simmaxstab.R: Add more details for an error according to a
suggestion of Carlo
Gaetan.
2012-10-31 12:50 mathieu_ribatet
* man/predict.copula.Rd: Reduce the complexity of the example
according to CRAN policies.
2012-10-25 12:21 mathieu_ribatet
* man/internals.Rd: Add several simulation techniques for
Brown-Resnick processes
2012-10-25 12:21 mathieu_ribatet
* R/simmaxstab.R, src/header.h, src/simBrownResnick.c: Add several
simulation techniques for Brown-Resnick processes
2012-10-24 08:46 mathieu_ribatet
* man/condrmaxstab.Rd: Small fix.
2012-10-24 08:00 mathieu_ribatet
* R/condSimMaxStab.R: Small fix
2012-10-24 07:46 mathieu_ribatet
* R/condSimMaxStab.R: Small fix
2012-10-24 07:41 mathieu_ribatet
* NEWS: Update the NEWS
2012-10-24 07:35 mathieu_ribatet
* ChangeLog: Update the ChangeLog
2012-10-24 07:30 mathieu_ribatet
* DESCRIPTION: Update the version number
2012-10-24 07:29 mathieu_ribatet
* src/header.h: Add the headers for the conditional simulation
functions of max-stable processes
2012-10-24 07:29 mathieu_ribatet
* man/simmaxstab.Rd: Fix a missing link in the documentation
2012-10-24 07:28 mathieu_ribatet
* R/condSimMaxStab.R, man/condrmaxstab.Rd, src/condsimMaxStab.c:
Add functions and documentation for conditional simulation of
max-stable processes
2012-07-10 12:06 mathieu_ribatet
* src/simBrownResnick.c: Remove the printf calls
2012-07-10 11:41 mathieu_ribatet
* src/utils.c: Fix a bug with temporal trend--these were not
initialized---hmmm hmmm!
2012-07-10 11:40 mathieu_ribatet
* src/spatgevlik.c: Small edits for nicer code
2012-07-10 11:39 mathieu_ribatet
* R/modelChecking.R: Implement model checking for the extremal-t
process
2012-07-10 11:39 mathieu_ribatet
* R/copula.R: Fix a bug in simulating a Student copula on a grid.
2012-06-13 11:53 mathieu_ribatet
* R/simmaxstab.R: Implementing different (naive) simulation
techniques for
Brown--Resnick processes
2012-06-13 11:52 mathieu_ribatet
* src/header.h: Implementing different (naive) simulation
techniques for
Brown--Resnick processes
2012-06-13 11:52 mathieu_ribatet
* src/simBrownResnick.c: Implementing different (naive) simulation
techniques for
Brown--Resnick processes
2012-06-13 11:50 mathieu_ribatet
* src/utils.c: Cleaning the code
2012-06-05 13:51 mathieu_ribatet
* man/map.latent.Rd, man/plot.copula.Rd: Don't run the example to
save execution times
2012-06-05 13:51 mathieu_ribatet
* man/fitcopula.Rd: Don't run the example to save execution times
2012-06-05 13:50 mathieu_ribatet
* src/pairwiselik.c: Comment the OpenMP directive since it is not
really efficient
2012-06-05 13:50 mathieu_ribatet
* src/fitcovmat.c: Small optimization
2012-06-05 13:50 mathieu_ribatet
* src/copula.c: Small optimization
2012-05-22 14:18 mathieu_ribatet
* src/brownResnick.c, src/circulant.c, src/copula.c,
src/covariance.c, src/direct.c, src/extremalt.c, src/fitcovmat.c,
src/geomgauss.c, src/kriging.c, src/schlather.c,
src/simBrownResnick.c, src/simextremalt.c, src/simgeometric.c,
src/simschlather.c, src/smith.c: Optimize memory allocation!
2012-05-22 12:35 mathieu_ribatet
* R/conditionalSim.R: ## Lines starting with '## ' will be removed
from the log message.
## File(s) to commit recursively:
## R/conditionalSim.R
Fix a small bug.
2012-05-22 12:24 mathieu_ribatet
* R/conditionalSim.R: Fix a small bug.
2012-05-22 11:59 mathieu_ribatet
* src/simBrownResnick.c: Minor change
2012-05-22 11:59 mathieu_ribatet
* R/simmaxstab.R, src/header.h, src/simextremalt.c: Use the
spectral characterization for the extremal-t process! Thanks
Thomas!!!
2012-05-04 13:32 mathieu_ribatet
* tests/gradientPllik.R: Some minor improvements
2012-05-04 13:32 mathieu_ribatet
* src/standardErrors.c: Fix some small bug
2012-05-04 13:31 mathieu_ribatet
* src/direct.c: Improve lisibility of code
2012-05-04 13:31 mathieu_ribatet
* src/simextremalt.c, src/simgeometric.c, src/simschlather.c,
src/simsmith.c: Improve lisibility of code
2012-05-04 13:26 mathieu_ribatet
* man/SpatialExtremes-package.Rd, man/covariance.Rd,
man/fitmaxstab.Rd: Update the documentations
2012-05-04 13:25 mathieu_ribatet
* R/predict.R: Standard error for quantiles are now implemented if
possible...
2012-05-04 13:25 mathieu_ribatet
* R/conditionalSim.R, R/covariance.R: Minor modifications
2012-05-04 13:19 mathieu_ribatet
* vignettes, vignettes/Figures, vignettes/SpatialExtremesGuide.Rnw,
vignettes/layout.sty, vignettes/references.bib: Move the vignette
files to the ./vignettes folder
2012-05-04 13:17 mathieu_ribatet
* inst: Move the vignettes files to ./vignettes instead of
./inst/doc
2012-05-04 13:16 mathieu_ribatet
* inst/doc/layout.sty, inst/doc/references.bib: Move the vignettes
files to ./vignettes instead of ./inst/doc
2012-05-04 13:16 mathieu_ribatet
* inst/doc/Figures/Schlather2Sim.png,
inst/doc/Figures/Smith2Sim.png,
inst/doc/Figures/rmaxstabSmith.png, inst/doc/Figures/tbm.png,
inst/doc/SpatialExtremesGuide.Rnw: Move the vignettes files to
./vignettes instead of ./inst/doc
2012-05-04 13:12 mathieu_ribatet
* NAMESPACE: Add a namespace as required by new releases of R
2012-05-04 10:29 mathieu_ribatet
* R/plots.R: typo widths instead of width in layout
2012-05-04 10:22 mathieu_ribatet
* R/plots.R: Some small modifications with the map and condmap
functions.
2012-05-02 04:57 mathieu_ribatet
* src/latentVariable.c: Fix a typo
2012-04-23 11:11 mathieu_ribatet
* R/conditionalSim.R: Minor change
2012-04-23 11:10 mathieu_ribatet
* R/brownresnick.R, R/extremalt.R, R/fitmaxstable.R, R/geomgauss.R,
R/schlather.R, R/schlatherind.R, R/smith.R: Add an argument
check.grad to compare the numerical gradient and the
theoretical one. Only useful for debugging purposes.
2012-04-23 11:04 mathieu_ribatet
* src/latentVariable.c: Fix a bug: going out of bound for the
acceptance and external rates...
2011-11-17 22:52 mathieu_ribatet
* src/simBrownResnick.c: Improve the Brown--Resnick simulation. A
new method will appear soon!
2011-07-06 13:52 mathieu_ribatet
* src/simschlather.c: Remove an unused C variable, i.e., zero.
2011-07-06 13:52 mathieu_ribatet
* DESCRIPTION: Update the release number for the development
version
2011-07-06 13:51 mathieu_ribatet
* tests/gradientPllik.R: Test if the analytical gradient of the
pairwise likelihood matches the
numerical one
2011-07-06 13:51 mathieu_ribatet
* tests: Add a new folder tests in the package skeleton to
implement tests
2011-07-06 13:50 mathieu_ribatet
* R/brownresnick.R, R/extremalt.R, R/fitmaxstable.R, R/geomgauss.R,
R/schlather.R, R/schlatherind.R, R/smith.R, R/starting.values.R:
Add a component check.grad in control to check if the analytical
gradient matches the numerical one. This is used in the new
folder
tests!
2011-07-04 12:57 mathieu_ribatet
* inst/doc/SpatialExtremesGuide.Rnw: Some problem with the
producing of the vignette when saving png
figures in /inst/doc/Figures. Keep the figures fixed!
2011-07-04 09:27 mathieu_ribatet
* ChangeLog, DESCRIPTION, NEWS: Update DESCRIPTION, ChangeLog and
NEWS for the new release.
2011-07-04 09:19 mathieu_ribatet
* src/nsgeomgauss.c: Remove nsgeomgauss as I don't plan to work on
it now
2011-07-04 09:19 mathieu_ribatet
* R/conditionalSim.R, R/copula.R, R/covariance.R, R/extremalt.R,
R/fitcovmat.R, R/geomgauss.R, R/kriging.R, R/methods.R,
R/modelChecking.R, R/plots.R, R/schlather.R, R/schlatherind.R,
R/simmaxstab.R, R/standardErrors.R, R/starting.values.R,
inst/doc/SpatialExtremesGuide.Rnw, man/TIC.Rd, man/condmap.Rd,
man/condrgp.Rd, man/covariance.Rd, man/extcoeff.Rd,
man/fitcopula.Rd, man/fitcovariance.Rd, man/fitmaxstab.Rd,
man/fitspatgev.Rd, man/fmadogram.Rd, man/lmadogram.Rd,
man/logLik.maxstab.Rd, man/madogram.Rd, man/map.Rd,
man/plot.copula.Rd, man/plot.maxstab.Rd, man/predict.copula.Rd,
man/predict.maxstab.Rd, man/predict.spatgev.Rd,
man/print.copula.Rd, man/print.maxstab.Rd, man/print.spatgev.Rd,
man/profile2d.maxstab.Rd, man/simmaxstab.Rd, src/brownResnick.c,
src/circulant.c, src/copula.c, src/covariance.c, src/direct.c,
src/extremalt.c, src/fitcovmat.c, src/geomgauss.c, src/header.h,
src/kriging.c, src/latentVariable.c, src/schlather.c,
src/schlatherind.c, src/simextremalt.c, src/simgeometric.c,
src/simschlather.c, src/smith.c, src/smith3d.c,
src/standardErrors.c, src/turningbands.c, src/utils.c: Rename
what was call "sill" to "nugget", i.e., nugget = 1 - sill, as
it might confuse the users
2011-07-04 09:17 mathieu_ribatet
* inst/doc/SpatialExtremesGuide.pdf: Remove the pdf vignette from
the svn repos
2011-06-23 16:07 mathieu_ribatet
* src/simschlather.c: Small improvement
2011-06-23 16:07 mathieu_ribatet
* src/maxLinear.c: Get the code looking nicer
2011-06-23 16:06 mathieu_ribatet
* inst/doc/SpatialExtremesGuide.Rnw,
inst/doc/SpatialExtremesGuide.pdf, inst/doc/layout.sty: Ensure
that the utf8 encoding will be recognize by R CMD check.
Reduce the size of the vignette by using utils::compactPDF
2011-06-23 16:06 mathieu_ribatet
* R/copula.R, R/methods.R, R/modelChecking.R, R/predict.R,
man/fitcopula.Rd, man/plot.copula.Rd, man/predict.copula.Rd,
man/rcopula.Rd, src/copula.c, src/header.h: Fix a bug in
computing the likelihood for the Student copula.
A new function to get realisations from copula based models is
now
implemented.
Prediction and model checking is also available.
2011-04-22 20:33 mathieu_ribatet
* src/Makevars, src/covariance.c, src/fitcovmat.c, src/header.h,
src/pairwiselik.c, src/utils.c: Now use openmp and small
optimizations
2011-04-22 20:32 mathieu_ribatet
* R/madogram.R: Fix a bug when using a too large number of bins
2011-03-22 13:23 mathieu_ribatet
* ChangeLog: Update the ChangeLog
2011-03-22 13:21 mathieu_ribatet
* inst/doc/SpatialExtremesGuide.pdf: Use png figures to reduce
vignette size
2011-03-22 13:21 mathieu_ribatet
* R/conditionalSim.R, man/SpatialExtremes-package.Rd,
man/condrmaxlin.Rd, man/rmaxlin.Rd: condrmaxstab is renamed as
condrmaxlin
2011-03-22 08:38 mathieu_ribatet
* man/condrmaxlin.Rd: Remove condrmaxstab now named as condrmaxlin
2011-03-22 08:37 mathieu_ribatet
* man/condrmaxstab.Rd: Remove condrmaxstab now named as condrmaxlin
2011-03-22 08:34 mathieu_ribatet
* inst/doc/SpatialExtremesGuide.Rnw,
inst/doc/SpatialExtremesGuide.pdf: Use png figures to reduce
vignette size
2011-03-22 08:34 mathieu_ribatet
* inst/doc/Figures/Schlather2Sim.png,
inst/doc/Figures/Smith2Sim.png,
inst/doc/Figures/rmaxstabSmith.png, inst/doc/Figures/tbm.png: Add
png figures to reduce vignette size
2011-03-22 08:33 mathieu_ribatet
* inst/doc/Figures: Add png figures to reduce vignette size
2011-03-17 08:19 mathieu_ribatet
* inst/doc, inst/doc/SpatialExtremesGuide.pdf: The pdf file
produced by the vignette was too large so I will reduce
its size manually.
2011-03-16 13:02 mathieu_ribatet
* NEWS: Update the NEWS file
2011-03-16 13:01 mathieu_ribatet
* ChangeLog: Update the ChangeLog
2011-03-16 12:59 mathieu_ribatet
* R/conditionalSim.R: Small improvements for the conditional
simulation of max-stable
processes
2011-03-16 12:59 mathieu_ribatet
* R/maxLinear.R, man/rmaxlin.Rd: Implementation of max-linear
models
2011-03-16 12:58 mathieu_ribatet
* man/DIC.Rd, man/GEV.Rd, man/GPD.Rd,
man/SpatialExtremes-package.Rd, man/condmap.Rd,
man/condrmaxstab.Rd, man/covariance.Rd, man/cv.Rd,
man/fitcopula.Rd, man/fitmaxstab.Rd, man/fitspatgev.Rd,
man/fmadogram.Rd, man/gcv.Rd, man/latentVariable.Rd,
man/madogram.Rd, man/map.Rd, man/map.latent.Rd, man/rbpspline.Rd,