-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNEWS
1181 lines (748 loc) · 29.6 KB
/
NEWS
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.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.
o anova.mppm
Gave a warning for some models about "Internal error:
unable to map submodels to full model".
Fixed.
o addvar
If the covariate contained NA, NaN or Infinite values,
the calculations were sometimes incorrect.
Fixed.
o pcfmodel.ppm
Refused to handle an inhomogeneous Poisson process.
Fixed.
o fitted.ppm
Crashed if leaveoneout=TRUE and the model had no fitted coefficients.
Fixed.
CHANGES IN spatstat.core VERSION 2.3-2
OVERVIEW
o More diagnostics for spatial logistic regression models.
o Important bug fix in kppm.
o Increased numerical stability in kppm.
o Minor improvements and bug fixes.
o We thank Jonas Brehmer for contributions.
NEW FUNCTIONS
o lurking.slrm
Lurking variable plot for spatial logistic regression models.
o eem.slrm
Exponential energy marks for spatial logistic regression models.
o eem.ppm
Exponential energy marks for Gibbs and Poisson point process models
(this function was previously called 'eem').
SIGNIFICANT USER-VISIBLE CHANGES
o eem
The function 'eem' is now generic, with methods for 'ppm' and 'slrm'.
The function previously named 'eem' is now called 'eem.ppm'.
o objsurf.dppm, objsurf.kppm, objsurf.mincontrast
New arguments 'xlim', 'ylim' determine the range of parameter values
to be considered.
o Hybrid
Printed output from hybrid models has been improved slightly.
o kppm
New default settings ensure greater numerical stability of the
optimization algorithm against the effects of the scale of the
spatial coordinates. New argument 'stabilize' specifies whether
the optimization algorithm should be numerically stabilized.
o pcf
Improved error message
BUG FIXES
o kppm
Results were sometimes incorrect for method='clik2' and method='palm'
because the log composite likelihood was erroneously truncated to
positive values. Any fitted model for which logLik(model) = 2.2e-16
should be suspected of being incorrect.
Fixed.
o MultiHard
A hybrid of 'MultiHard' with another multitype interaction caused an error.
Fixed.
o simulate.dppm, simulate.detpointprocfamily
Crashed, rarely, with error message 'The dimension differs from
the number of columns in index'.
Fixed.
o as.fv.kppm, as.fv.dppm
The default plot labels in 'as.fv(x)' implied that the model 'x'
was inhomogeneous.
Fixed.
CHANGES IN spatstat.core VERSION 2.3-1
OVERVIEW
o Covariates in ppm and mppm may be functions that depend on the marks
as well as the spatial coordinates.
o Automatic selection of threshold for defining a binary predictor.
o Random perturbation of line segments.
o Minor extensions, performance improvements, and bug fixes.
NEW FUNCTIONS
o coef<-.fii
Changes the coefficients of a fitted interaction object
(a method for the generic "coef<-")
SIGNIFICANT USER-VISIBLE CHANGES
o ppm
Covariates which are functions may now depend on the marks
as well as the spatial coordinates: function(x,y,marks).
o mppm
Covariates which are functions may now depend on the marks
as well as the spatial coordinates: function(x,y,marks).
o reach.kppm
Now returns a result for LGCP models as well as cluster models.
o update.kppm
New argument 'envir'.
o clusterfit
Minor changes to the argument list.
o mincontrast
Minor changes to the argument list.
o mincontrast
Improved algorithm for handling NA, NaN or infinite values.
o varcount
Argument B has a sensible default.
BUG FIXES
o subfits
The fitted interaction coefficients were garbled.
If 'mfit' is the mppm object and 'a <- subfits(mfit)[[i]]' is one of the
sub-models, then coef(a) was correct, but coef(fitin(a)) was incorrect.
The fitted interaction was shown correctly by printing 'mfit'
but incorrectly by printing 'a'.
Fixed.
o varcount
The result was very inaccurate if the cluster radius was small
compared to the size of the window 'B', due to discretisation error.
Fixed.
CHANGES IN spatstat.core VERSION 2.3-0
OVERVIEW
o We thank Chiara Fend for contributions.
o Extensive support for spatial logistic regression models.
o New fitting method in kppm and dppm.
o Summary method for 'objsurf'.
o Minor bug fixes.
NEW FUNCTIONS
o response
Generic function which extracts the values of the response
in a fitted model. There are methods for lm, glm (which extract the
numeric vector of responses), and ppm, kppm, slrm, lppm and mppm
(which extract the original data point pattern).
o summary.objsurf, print.summary.objsurf
Summary method for 'objsurf'
o residuals.slrm
Residuals for spatial logistic regression models.
o leverage.slrm, influence.slrm, dfbetas.slrm, dffit.slrm
Leverage and influence diagnostics for spatial logistic regression models.
o rhohat.slrm
Method for 'rhohat' for spatial logistic regression models.
o envelope.slrm
Method for 'envelope' for spatial logistic regression models.
o intensity.slrm
Method for 'intensity' for spatial logistic regression models.
o deviance.slrm
Method for 'deviance' for spatial logistic regression models.
o pseudoR2.slrm
Method for 'pseudoR2' for spatial logistic regression models.
o quadrat.test.slrm
Method for 'quadrat.test' for spatial logistic regression models.
o parameters.slrm
Method for 'parameters' for spatial logistic regression models.
o valid.slrm
Method for 'valid' for spatial logistic regression models.
o emend.slrm
Method for 'emend' for spatial logistic regression models.
o roc.slrm
Method for 'roc' for spatial logistic regression models.
o auc.slrm
Method for 'auc' for spatial logistic regression models.
o Window.slrm, as.owin.slrm
Methods for 'Window' and 'as.owin' for spatial logistic regression models.
SIGNIFICANT USER-VISIBLE CHANGES
o kppm, dppm
New option 'method="adapcl"' performs adaptive composite likelihood fitting.
[Contributed by Chiara Fend.]
BUG FIXES
o clusterfield
Values of the cluster field were slightly incorrect (slightly higher
than the correct values) near the edge of the window,
because an 'edge correction' was mistakenly applied.
Fixed.
CHANGES IN spatstat.core VERSION 2.2-0
OVERVIEW
o summary method for spatial logistic regression models
NEW FUNCTIONS
o summary.slrm, print.summary.slrm
Summary method for spatial logistic regression models
o coef.summary.slrm
Print the fitted coefficients, confidence interval and p-values
for a spatial logistic regression model.
CHANGES IN spatstat.core VERSION 2.1-2
OVERVIEW
o Reduced CRAN check time.
CHANGES IN spatstat.core VERSION 2.1-1
OVERVIEW
o Minor bug fix
BUG FIXES
o simulate.kppm
Conditional simulation crashed on rare occasions,
with an error about negative probabilities.
Fixed.
CHANGES IN spatstat.core VERSION 2.1-0
OVERVIEW
o We thank Achmad Choiruddin, Jean-Francois Coeurjolly
and Rasmus Waagepetersen for contributions.
o Conditional simulation in kppm
o Information criteria for model selection in kppm
o Modified handling of covariates in slrm
o Improved output in summary.mppm
o Minor improvements and bug fixes.
NEW FUNCTIONS
o ic
Information criteria for model selection in ppm and kppm.
Kindly contributed by Achmad Choiruddin, Jean-Francois Coeurjolly
and Rasmus Waagepetersen.
SIGNIFICANT USER-VISIBLE CHANGES
o simulate.kppm
Conditional simulation of the model, given a fixed number of points,
is now supported using the new arguments 'n.cond' and 'w.cond'.
o slrm
In the default case (where dataAtPoints is not given)
all spatial covariates, including the spatial coordinates x and y,
are now evaluated at the centre of each pixel. This improves
consistency with other implementations of spatial logistic regression.
o slrm
Silently ignores any arguments '...' that are not recognised by 'as.mask'
o summary.mppm
Improved summary of the dependence of the
interpoint interaction on the covariates.
o pairs.im
New argument 'drop'.
BUG FIXES
o model.matrix.mppm
If the model was fitted using 'gam', the resulting matrix
did not have an 'assign' attribute.
Fixed.
o model.depends
Crashed for models fitted using 'gam'.
Fixed.
o predict.slrm, fitted.slrm
Crashed if the model was fitted using split pixels (argument 'splitby').
Fixed.