-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNEWS
More file actions
1508 lines (961 loc) · 38.7 KB
/
NEWS
File metadata and controls
1508 lines (961 loc) · 38.7 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
CHANGES IN spatstat.model VERSION 3.7-0
OVERVIEW
o New generic 'Lmodel'.
o Methods for class 'clustermodel'
o 'envelope' method for 'dppm'
o More options for 'simulate' argument in 'envelope'
o Specify the 'theoretical' value of the summary function in 'envelope'
NEW FUNCTIONS
o envelope.dppm
Method for 'envelope' for fitted models of class 'dppm'
o Lmodel, Lmodel.kppm, Lmodel.dppm, Lmodel.ppm, Lmodel.detpointprocfamily
Given a point process model, return a function in the R language
which computes the theoretical L-function of the model.
o Kmodel.clustermodel, pcfmodel.clustermodel, Lmodel.clustermodel
Calculate the theoretical K-function, L-function or pair correlation
function for a model of class 'clustermodel'.
SIGNIFICANT USER-VISIBLE CHANGES
o psib, persist, clusterstrength, varcount
These functions now accept an object of class 'clustermodel'.
o envelope.ppm, envelope.kppm, envelope.slrm
Argument 'simulate' can be a point process model of class
'ppm', 'kppm', 'dppm', 'slrm', 'clusterprocess' or 'detpointprocfamily'.
o envelope.ppm, envelope.kppm, envelope.slrm
New argument 'theoryfun' can be used to provide the theoretical value
of the summary function.
CHANGES IN spatstat.model VERSION 3.6-1
OVERVIEW
o Minor changes to satisfy CRAN.
CHANGES IN spatstat.model VERSION 3.6-0
OVERVIEW
o We thank Gabriela Calana Somoza, Bethany Macdonald
and Rasmus Waagepetersen for contributions.
o Waagepetersen's composite likelihood for cluster processes.
o Convert a recursively partitioned point process model to a tessellation.
o Improvements to 'profilepl' and 'effectfun'.
o Diagnostic functions have argument 'rmax'.
o Cluster strength index and spatial persistence index.
o Bug fixes and minor improvements.
NEW FUNCTIONS
o as.tess.rppm
Convert a recursively partitioned point process model
to a spatial tessellation.
o clusterstrength
Cluster strength index for a cluster process or Cox process.
o formula.rppm
Extract the model formula for a recursively partitioned point process model.
o persist
Spatial persistence index for a cluster process.
SIGNIFICANT USER-VISIBLE CHANGES
o kppm
New option: method="waag" fits the model by maximising
Waagepetersen's (2007) second order composite likelihood
[Suggested by Bethany Macdonald]
o effectfun
Improved defaults for a recursive partition model (class 'rppm').
The user only needs to provide values for those covariates which
are used in the decision tree. If the entire tree involves only one
variable, then 'covname' is not needed.
o effectfun
If a spatial covariate is constant, its value does not need to be
provided in the call to effectfun().
o as.fv.kppm
Improved arguments for empirical estimation of pair correlation function
when the model was fitted with a non-default value of 'method'.
o Gcom, Kcom, psstA, psstG, psst
These diagnostic functions have a new formal argument 'rmax'.
o Gres, Kres
These diagnostic functions accept argument 'rmax'.
o lurking.ppm, lurking.ppp, lurking.slrm
Argument 'covariate' can be a function(x,y)
or one of the strings "x" or "y".
o lurking.ppm, lurking.ppp, lurking.slrm, plot.lurk
When the covariate is a cartesian coordinate or a distance function,
the unit of length is stated on the horizontal axis label of the plot.
o Penttinen
Computation of interaction terms has been accelerated.
o profilepl
It is now possible to fit a model with a formula like ~ pmax(x, thresh)
where 'thresh' is an irregular parameter.
o Strauss
Computation of interaction terms has been slightly accelerated.
BUG FIXES
o effectfun
Crashed if the model involved a covariate function
with extra arguments passed through 'covfunargs'.
Fixed.
o lurking
Crashed in rare cases when 'envelope=TRUE' with message 'Xsim not found'.
[Spotted by Gabriela Calana Somoza.]
Fixed.
o plot.leverage.ppm
Return value was NULL.
Fixed.
o update.ppm
update(object, X) crashed sometimes if X was a point pattern
whose observation window was not identical to the window of the
original point pattern dataset.
Fixed.
CHANGES IN spatstat.model VERSION 3.5-0
OVERVIEW
o Models for replicated point patterns on linear networks.
o ROC curves for determinantal point process models.
o Partial residuals for cluster process and Cox process models.
o Extended facilities for spatial logistic regression.
o Bug fixes and internal improvements.
NEW FUNCTIONS
o diagnose
New generic function for model diagnostics.
o parres
New generic function for partial residuals.
o parres.ppm
The original function 'parres' has now become the method 'parres.ppm'.
o parres.kppm
Partial residual plot for fitted cluster process or Cox process models.
o roc.dppm
Compute ROC curve for a determinantal point process model.
SIGNIFICANT USER-VISIBLE CHANGES
o diagnose.ppm
This is now a method for the generic function 'diagnose'.
o fitted.slrm
Argument 'leaveoneout' is no longer ignored when 'dataonly=FALSE';
it now supports 'leave-one-pixel-out' prediction.
o mppm
Now allows the response variable to be a point pattern on a linear network.
This is experimental code.
o predict.slrm
New argument 'leaveoneout' supports leave-one-pixel-out calculation
of predicted values, and new argument 'fast' determines the algorithm used.
o print.slrm
Now prints information about the pixel raster.
o residualMeasure
More options for argument 'lambda'.
o roc.slrm
Changed interpretation of argument 'leaveoneout=TRUE'.
This now performs 'leave-one-pixel-out' calculation
(previously it performed 'leave-one-point-out' calculation).
o slrm
New argument 'ruleAtPoints' controls discretisation rule at data points.
o slrm
Arguments '...' are now passed to 'owin2mask' to determine the
polygon-to-raster discretisation rule for a covariate of class 'owin'.
o summary.slrm
Now prints information about the pixel raster.
BUG FIXES
o fitted.slrm
Calculation was incorrect when leaveoneout=TRUE and type != "intensity".
Fixed.
CHANGES IN spatstat.model VERSION 3.4-2
OVERVIEW
o Internal changes to satisfy CRAN.
CHANGES IN spatstat.model VERSION 3.4-1
OVERVIEW
o Improvements to intensity.ppm for Geyer models.
o Simulation of a fitted model in a different window is better supported.
o Minor improvements.
o We thank Andrea Gilardi for contributions.
SIGNIFICANT USER-VISIBLE CHANGES
o intensity.ppm
For Geyer models, the computation is faster,
and supports more values of the saturation parameter 'sat',
namely sat = 0.5, 1, 1.5, 2, 2.5 and 3.
o ppm, kppm, dppm, slrm, mppm
These model-fitting functions now handle the case where the
point pattern is an 'NAobject'.
o simulate.ppm, rmh.ppm, rmhmodel.ppm
New argument 'newdata' allows the model to be simulated
in a completely different window, or using different covariate values.
o simulate.ppm, rmh.ppm, rmhmodel.ppm
A warning or error occurs if there are too many NA values
of the model trend in the desired window.
BUG FIXES
o predict.mppm
Crashed if a covariate contained NA values and
the model included random effects.
[Spotted by Andrea Gilardi.]
Fixed.
CHANGES IN spatstat.model VERSION 3.4-0
OVERVIEW
o Extensions to ROC curves.
NEW FUNCTIONS
o addROC
Calculate partial ROC curve for adding a new covariate to a model.
o dropROC
Calculate partial ROC curve for removing a covariate from a model.
o dropply, addapply
Consider all single-variable additions or deletions in a model.
SIGNIFICANT USER-VISIBLE CHANGES
o mppm
Recognises argument 'quad.args'.
o roc.ppm, roc.slrm, roc.kppm
New argument 'baseline' allows calculation of ROC relative to a baseline.
o roc.ppm, roc.slrm, roc.kppm
New argument 'method' determines the estimation method.
New options include a kernel smoothing estimate and a monotone estimate.
o roc.ppm, roc.slrm, roc.kppm
New arguments 'CI', 'alpha' for calculating confidence intervals.
o roc.ppm, roc.slrm, roc.kppm
New argument 'subset' specifies a sub-region of the spatial domain
in which the ROC should be calculated.
o roc.ppm, roc.slrm, roc.kppm
New argument 'leaveoneout' specifies whether to use leave-one-out estimates
of intensity at the data points.
CHANGES IN spatstat.model VERSION 3.3-6
OVERVIEW
o Simulation of 'zclustermodel' objects.
o Documentation improvements and bug fixes.
NEW FUNCTIONS
o simulate.zclustermodel
Method for simulating objects of class 'zclustermodel'.
BUG FIXES
o intensity.zclustermodel
Always returned the value zero.
Fixed.
CHANGES IN spatstat.model VERSION 3.3-5
OVERVIEW
o We thank John Ginos for contributions.
o Bug fix.
BUG FIXES
o simulate.kppm
Argument saveLambda=TRUE was ignored for nonstationary LGCP models.
[Spotted by John Ginos.]
Fixed.
CHANGES IN spatstat.model VERSION 3.3-4
OVERVIEW
o Improvements to documentation.
o Bug fix affecting spatstat.linnet
BUG FIXES
o internal code
For point process models on a linear network (class 'lppm')
involving covariates of class 'lintess', the internal structure
of the fitted model was corrupted, leading to errors in calculating
properties of the fitted model, such as predict.lppm.
[Spotted by Andrea Gilardi.]
[Bug fix requires changes in spatstat.model internal code]
Fixed.
CHANGES IN spatstat.model VERSION 3.3-3
OVERVIEW
o Bug fixes and minor improvements.
SIGNIFICANT USER-VISIBLE CHANGES
o model.images.ppm
Now recognises arguments passed to 'as.mask'
to control the pixel raster for the images.
BUG FIXES
o improve.kppm
Crashed if NA's were present in the covariate values.
Fixed.
o model.matrix.ppm
Crashed with a message about 'logical index too long',
if NA's were present in the covariate values.
Fixed.
CHANGES IN spatstat.model VERSION 3.3-2
OVERVIEW
o Tweaks to documentation.
o Improved Palm diagnostic plot.
SIGNIFICANT USER-VISIBLE CHANGES
o plot.palmdiag
Improved placement of legend.
CHANGES IN spatstat.model VERSION 3.3-1
OVERVIEW
o Internal changes to satisfy CRAN package checker.
CHANGES IN spatstat.model VERSION 3.3-0
OVERVIEW
o Package now depends on 'spatstat.univar'.
o Easier control over quadrature schemes.
o More options in fitted.slrm
o Bug fix in predict.ppm.
o Internal improvements.
PACKAGE DEPENDENCE
o spatstat.model now depends on the new package 'spatstat.univar'.
SIGNIFICANT USER-VISIBLE CHANGES
o ppm.ppp
New argument 'quad.args' is a list of arguments passed to 'quadscheme'
to control the construction of the quadrature scheme.
o fitted.slrm
New argument 'type' allows calculation of fitted probabilities, intensities
or link function values.
o fitted.slrm
New arguments 'dataonly' and 'leaveoneout' allow calculation of fitted
values at the data points only, using leave-one-out calculation if desired.
BUG FIXES
o predict.ppm
Argument 'eps' was ignored in many cases.
Fixed.
CHANGES IN spatstat.model VERSION 3.2-11
OVERVIEW
o Slightly accelerated.
SIGNIFICANT USER-VISIBLE CHANGES
o spatstat.model package
Some computations slightly accelerated.
CHANGES IN spatstat.model VERSION 3.2-10
OVERVIEW
o Internal bug fix.
CHANGES IN spatstat.model VERSION 3.2-9
OVERVIEW
o We thank Marta Luraschi for contributions.
o Minor improvements and bug fixes.
SIGNIFICANT USER-VISIBLE CHANGES
o vcov.kppm
If any quadrature points have NA values for one of the covariates,
these quadrature points are ignored in the variance calculation,
with a warning.
o vcov.kppm
Minor change to formal arguments.
o vcov.ppm
Minor change to formal arguments.
BUG FIXES
o vcov.kppm
If any quadrature points had NA values for one of the covariates,
the result was a matrix of NA values.
Fixed.
CHANGES IN spatstat.model VERSION 3.2-8
OVERVIEW
o spatstat.model no longer suggests package 'maptools' or 'RandomFields'.
o code for fitting log-Gaussian Cox models has changed.
o minor improvements to help files.
SIGNIFICANT USER-VISIBLE CHANGES
o kppm
The code for fitting log-Gaussian Cox process models (clusters="LGCP")
has been re-implemented without using the package 'RandomFields'.
The current code supports the 'exponential', 'gauss', 'stable',
'gencauchy' and 'matern' covariance models.
o lgcp.estK, lgcp.estpcf
This code for fitting log-Gaussian Cox process models
has been re-implemented without using the package 'RandomFields'.
The current code supports the 'exponential', 'gauss', 'stable',
'gencauchy' and 'matern' covariance models.
o simulate.kppm
For log-Gaussian Cox process models (clusters='LGCP') the simulation
algorithm has been completely re-implemented to avoid dependence
on the defunct package 'RandomFields'. For details, see the help
for 'rLGCP' in the package 'spatstat.random'.
CHANGES IN spatstat.model VERSION 3.2-6
OVERVIEW
o Internal improvements.
SIGNIFICANT USER-VISIBLE CHANGES
o ppm
Internal changes to support improvements in spatstat.linnet::lppm.
CHANGES IN spatstat.model VERSION 3.2-4
OVERVIEW
o Minor improvements.
SIGNIFICANT USER-VISIBLE CHANGES
o cdf.test.ppm
Recognises argument 'rule.eps' passed to 'as.mask'.
o dfbetas.ppm
Recognises argument 'rule.eps' passed to 'as.mask'.
o leverage.ppm
Recognises argument 'rule.eps' passed to 'as.mask'.
o rhohat.ppm
New argument 'rule.eps' passed to 'as.mask'.
CHANGES IN spatstat.model VERSION 3.2-3
OVERVIEW
o Tweak to satisfy package checker.
CHANGES IN spatstat.model VERSION 3.2-2
OVERVIEW
o Accelerated some code.
o Standard errors are now available for 'ppm' models fitted using 'gam'.
o Internal reorganisation.
o Minor changes to documentation.
o Bug fixes.
SIGNIFICANT USER-VISIBLE CHANGES
o plot.mppm
New argument 'main'.
BUG FIXES
o predict.ppm
Standard error calculation ('se=TRUE') crashed if the fitted model
was a generalised additive model (fitted with 'use.gam=TRUE').
Fixed.
o effectfun
Standard error calculation ('se.fit=TRUE') crashed if the fitted model
was a generalised additive model (fitted with 'use.gam=TRUE').
Fixed.
o parres
If 'model' was a large object, computation was extremely slow
or terminated with a message about 'deparse'.
Fixed.
o plot.mppm
If the fitted model 'x' was a large object, computation was extremely slow
or terminated with a message about 'deparse'.
Fixed.
o predict.ppm
If 'new.coef' was given and the fitted model 'object' was a large object,
computation was extremely slow, or terminated with message about 'deparse'.
Fixed.
CHANGES IN spatstat.model VERSION 3.2-1
OVERVIEW
o Minor changes to citation file, to satisfy CRAN.
CHANGES IN spatstat.model VERSION 3.2-0
OVERVIEW
o Improvements to 'update' methods for point process models.
o New 'update' methods for classes 'dppm' and 'rppm'.
o Minor improvements and bug fixes.
NEW FUNCTIONS
o update.dppm
Update method for determinantal point process models.
o update.rppm
Update method for recursively partitioned point process models.
SIGNIFICANT USER-VISIBLE CHANGES
o update.slrm
Now accepts the idiom 'update(object, X)' where X is a point pattern.
o update.ppm, update.kppm, update.dppm, update.slrm, update.rppm
All of these methods now accept the idiom 'update(object, X)'
where X is a point pattern.
o print.ppm, summary.ppm
Prints the name of the point pattern dataset to which the model was fitted.
o update.ppm
Internal improvements.
CHANGES IN spatstat.model VERSION 3.1-2
OVERVIEW
o Minor changes to satisfy CRAN package checker.
CHANGES IN spatstat.model VERSION 3.1-1
OVERVIEW
o We thank Bethany Macdonald for contributions.
o kppm has been accelerated when method='palm' or 'clik2'
o kppm can save the history of the optimisation algorithm.
o Bug fixes and internal tweaks.
SIGNIFICANT USER-VISIBLE CHANGES
o kppm
New argument 'trajectory' specifies whether to save the history
of function evaluations performed by the optimization algorithm.
o kppm
Computation accelerated when 'method="palm"' or 'method='clik2'".
[Kindly contributed by Bethany Macdonald.]
BUG FIXES
o simulate.kppm
If the model was very close to a Poisson process, and if saveLambda=TRUE was selected,
the attribute "Lambda" was incorrectly labelled "lambda".
Fixed.
o simulate.kppm
Simulation of the variance-gamma model terminated with an error about the value of 'nu'
(with recent versions of spatstat.random).
Fixed.
o kppm
Terminated with an error about missing argument 'A', if penalised=TRUE.
Fixed.
o summary.kppm
Did not correctly recognise when a model was fitted using a penalty.
Fixed.
CHANGES IN spatstat.model VERSION 3.1-0
OVERVIEW
o We thank Tilman Davies and Martin Hazelton for contributions.
o Penalised model-fitting for Neyman-Scott cluster process models.
o Index of the strength of clustering in a Neyman-Scott cluster process model.
o Probability of having any siblings.
o More information is printed about Neyman-Scott cluster process models.
o Minor improvements.
NEW CLASSES
o traj
Trajectory (history of function evaluations) in a model
that was fitted by optimisation.
NEW FUNCTIONS
o panysib
Probability that a point in a cluster process has any siblings.
o is.poissonclusterprocess
Detects whether a given model is a Poisson cluster process
(which includes Neyman-Scott processes).
o traj, print.traj, plot.traj, lines.traj
Extract, print and plot the trajectory of function evaluations.
SIGNIFICANT USER-VISIBLE CHANGES
o kppm
New argument 'penalised' supports penalised model-fitting with a penalty against
extremely large or small values of the cluster scale.
o print.kppm, summary.kppm
Additional characteristics of the fitted model are reported,
including the cluster strength 'phi' and the sibling probability.
o varcount
New argument 'relative' (supports calculation of the overdispersion index).
o plot.palmdiag
Improved calculation of y axis limits.
CHANGES IN spatstat.model VERSION 3.0-3
OVERVIEW
o Palm intensity diagnostic.
NEW FUNCTIONS
o palmdiagnose, plot.palmdiag
Palm intensity diagnostic plot for cluster process models
proposed by Tanaka, Ogata and Stoyan.
CHANGES IN spatstat.model VERSION 3.0-2
OVERVIEW
o Minor changes to placate the package checker.
CHANGES IN spatstat.model VERSION 3.0-1
OVERVIEW
o Minor changes to placate the package checker.
CHANGES IN spatstat.model VERSION 3.0-0
OVERVIEW
o New package
o We thank Achmad Choiruddin and Suman Rakshit for contributions.
o Regularized model-fitting in 'ppm' and 'kppm'.
o integral.msr accepts a weight function.
o Weighted version of a measure.
o Residuals for recursively-partitioned models.
o Residuals for any estimate of intensity.
o U-shaped curves in 'rhohat'.
o Bug fixes and minor improvements.
NEW FUNCTIONS
o measureWeighted
Weighted version of a measure.
o residuals.rppm
Residual measure for a recursively-partitioned point process model.
o residualMeasure
Residual measure given an observed point pattern
and an estimate of its intensity.
SIGNIFICANT USER-VISIBLE CHANGES
o Package structure
The package 'spatstat.core' has been split into two packages called
'spatstat.explore' (for exploratory data analysis)
and 'spatstat.model' (for modelling and formal inference).
o spatstat.model
The new package 'spatstat.model' contains the code for model-fitting,
model diagnostics, and formal inference. Examples include 'ppm',
'kppm', 'mppm', 'dppm', 'slrm', 'simulate.ppm', 'anova.ppm',
'diagnose.ppm', 'residuals.ppm', 'leverage.ppm', 'addvar', 'parres',
o NEWS
The NEWS file for the new package 'spatstat.model'
contains older news items from the defunct package 'spatstat.core'
(for functions which are now in 'spatstat.model').
o ppm
New argument 'improve.type'.
o ppm
Now supports regularized model-fitting when 'improve.type="enet"'.
o ppm
Option 'method="ho"' is replaced by 'improve.type="ho"'.
o ppm
Huang-Ogata approximate maximum likelihood can be applied to logistic fits
by setting 'method="logi"' and 'improve.type="ho"'.
o kppm
New argument 'ppm.improve.type'.
o kppm
Now supports regularized model-fitting of the first order trend
when 'ppm.improve.type="enet"'.
o integral.msr
New argument 'weight' specifies a weight (integrand) for the integration.
o rhohat.ppm, rhohat.slrm
New options 'smoother="mountain"' and 'smoother="valley"'
for estimating a unimodal function (U-shaped curve).
o rhohat.ppm, rhohat.slrm
If the unit of length is a 'distfun', the name of the unit of length
is saved and displayed on the plot.
o rhohat.ppm, rhohat.slrm
New arguments 'jitter', 'jitterfactor', 'interpolate' allow greater
control over the calculation.
o rhohat.ppm, rhohat.slrm
New argument 'do.CI' specifies whether to calculate confidence bands.
BUG FIXES
o predict.ppm
Argument 'new.coef' was ignored in the calculation of the standard error
when 'se=TRUE'.
Fixed.
o predict.ppm
Argument 'new.coef' was ignored in calculating the standard error
(and therefore the width of the interval) when 'type="count"'
and 'interval="confidence"' or 'interval="prediction"'.
Fixed.
o vcov.mppm
Crashed with a message about 'subscript out of bounds', for some models.
Fixed.
CHANGES IN spatstat.core VERSION 2.4-4.010
OVERVIEW
o Internal improvements.
CHANGES IN spatstat.core VERSION 2.4-4
OVERVIEW
o Bug fixes and minor improvements.
CHANGES IN spatstat.core VERSION 2.4-3
OVERVIEW
o We thank Art Stock for contributions.
o Bug fixes and minor improvements.
CHANGES IN spatstat.core VERSION 2.4-2
OVERVIEW
o Internal bug fixes.
CHANGES IN spatstat.core VERSION 2.4-1
OVERVIEW
o We thank Frederic Lavancier, Sebastian Meyer and Sven Wagner
for contributions.
o Improved approximation of intensity of Gibbs models.
o Experimental code to represent (theoretical) point process models
o Extract more information about a point process model.
o Internal improvements and bug fixes.
NEW CLASSES
o zgibbsmodel
Experimental. An object of class 'zgibbsmodel' represents a
Gibbs point process model with specified parameter values
(whereas 'ppm' represents a model fitted to data).
NEW FUNCTIONS
o hardcoredist
Extract the hard core distance of a point process model.
o interactionorder
Extract the order of interpoint interaction of a point process model.
o zgibbsmodel
Experimental. Create an object of class 'zgibbsmodel'.
o print.zgibbsmodel
Experimental. Print an object of class 'zgibbsmodel'.
o is.poisson.zgibbsmodel, is.stationary.zgibbsmodel
Experimental. Methods for class 'zgibbsmodel'
SIGNIFICANT USER-VISIBLE CHANGES
o intensity.ppm
Can now calculate the Coeurjolly-Lavancier DPP approximation of intensity.
[Code kindly contributed by Frederic Lavancier]
New argument 'approx' specifies the choice of approximation.
BUG FIXES
o vcov.ppm
Crashed in some cases, with message 'object lamdel not found'.
[Spotted by Sven Wagner.]
Fixed.
CHANGES IN spatstat.core VERSION 2.4-0
OVERVIEW
o We thank Sriram Ramamurthy for contributions.
o spatstat.core now depends on the new package 'spatstat.random'.
o Functions for generating random patterns have been removed.
o Important bug fixes in anova.mppm and vcov.mppm.
o Minor improvements and bug fixes
SIGNIFICANT USER-VISIBLE CHANGES
o package structure
The code for generating random spatial patterns (including 'rpoispp',
'rMatClust', 'rThomas', 'rNeymanScott', 'rStrauss', 'rmh')
has been removed from 'spatstat.core' and placed in a new package
'spatstat.random'. This new package is required by 'spatstat.core'.
o anova.mppm
Improved labelling of models in output.
o qqplot.ppm, plot.qqppm
Improved the text label indicating the type of residuals.
BUG FIXES
o vcov.mppm
For Gibbs (non-Poisson) models, the variance matrix was
calculated incorrectly in some cases.
Fixed.
o anova.mppm
Results were sometimes incorrect if the two models
had different interactions (e.g. Strauss vs Poisson).
Fixed.
o anova.mppm
Crashed for some models with a message about 'coefficient missing
from new.coef'.
Fixed.