-
Notifications
You must be signed in to change notification settings - Fork 1
/
NEWS
1104 lines (697 loc) · 27.2 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.explore VERSION 3.3-3
OVERVIEW
o relative risk estimation using diffusion.
o smoothing using diffusion.
o Tweaks to bandwidth selection.
NEW FUNCTIONS
o relriskHeat, relriskHeat.ppp
Relative risk estimation using diffusion.
o blurHeat, blurHeat.im
Image smoothing using diffusion.
o SmoothHeat, SmoothHeat.ppp
Smoothing numerical values observed at points, using diffusion.
o bw.relriskHeatppp
Bandwidth selection for relriskHeat.ppp
SIGNIFICANT USER-VISIBLE CHANGES
o bw.ppl
Argument 'shortcut' now defaults to TRUE.
CHANGES IN spatstat.explore VERSION 3.3-2
OVERVIEW
o Tweaks to documentation.
o Internal repairs.
o Internal changes to satisfy package checker.
CHANGES IN spatstat.explore VERSION 3.3-1
OVERVIEW
o Internal changes to satisfy package checker.
CHANGES IN spatstat.explore VERSION 3.3-0
OVERVIEW
o 'spatstat.explore' now depends on package 'spatstat.univar'.
o Some functions have been moved to 'spatstat.univar'.
o Minor improvements.
PACKAGE DEPENDENCE
o spatstat.explore now depends on the new package 'spatstat.univar'
o Some functions have been moved
from 'spatstat.explore' to 'spatstat.univar'.
SIGNIFICANT USER-VISIBLE CHANGES
o cbind.fv, bind.fv
Additional arguments may be functions in the R language.
DELETED FUNCTIONS
o bw.abram
The generic 'bw.abram' has been moved
to the new package 'spatstat.univar'.
o CDF, CDF.density
The generic 'CDF' and method 'CDF.density' have been moved
to the new package 'spatstat.univar'.
o densityAdaptiveKernel
The generic 'densityAdaptiveKernel' has been moved
to the new package 'spatstat.univar'.
o dkernel, pkernel, qkernel, rkernel
These functions have been moved to the new package 'spatstat.univar'.
o kernel.factor, kernel.moment, kernel.squint
These functions have been moved to the new package 'spatstat.univar'.
o kaplan.meier, reduced.sample, km.rs
These functions have been moved to the new package 'spatstat.univar'.
o quantile.density
This method has been moved to the new package 'spatstat.univar'.
o stieltjes
This function has been moved to the new package 'spatstat.univar'.
CHANGES IN spatstat.explore VERSION 3.2-7
OVERVIEW
o Bug fixes.
o Internal improvements.
BUG FIXES
o SpatialMedian.ppp, SpatialQuantile.ppp
Argument `sigma' was ignored in some calculations.
Fixed.
CHANGES IN spatstat.explore VERSION 3.2-6
OVERVIEW
o We thank Mohomed Abraj, Marcelino de la Cruz and Stephanie Hogg
for contributions.
o Spatially weighted median and quantile of mark values.
o Adaptive estimation of intensity for split point patterns.
o Anisotropic bandwidth selection
o Boyce index.
o Internal improvements.
o Bug fixes.
NEW FUNCTIONS
o SpatialMedian.ppp, SpatialQuantile.ppp
Spatially weighted median and quantile of mark values of a point pattern.
o boyce
Boyce index and continuous Boyce index.
o densityAdaptiveKernel.splitppp
A method for 'densityAdaptiveKernel' for split point patterns.
SIGNIFICANT USER-VISIBLE CHANGES
o bw.ppl
New argument `varcov1' for anisotropic bandwidth selection.
o bw.smoothppp
New argument `varcov1' for anisotropic bandwidth selection.
BUG FIXES
o studpermu.test
The code required each group to consist of at least 3 point patterns,
rather than 2 point patterns (as stated in the documentation).
Fixed.
o Jest
Ignored pixel resolution argument 'eps'.
Fixed.
o scanLRTS
Pixel resolution arguments 'dimyx', 'eps', 'xy' were not correctly handled.
Fixed.
CHANGES IN spatstat.explore VERSION 3.2-5
OVERVIEW
o Minor corrections in documentation.
CHANGES IN spatstat.explore VERSION 3.2-4
OVERVIEW
o Integration of functions.
o Changed defaults for Clark-Evans Test.
o spatstat.explore no longer suggests package 'maptools'.
o Minor improvements and bug fixes.
NEW FUNCTIONS
o integral.fv
Compute the integral of a function.
SIGNIFICANT USER-VISIBLE CHANGES
o density.ppp
New argument 'sameas'.
o clarkevans.test
The asymptotic test is now available for any choice of edge correction.
o clarkevans.test
New argument 'method' determines whether to use the asymptotic test
or Monte Carlo test. The default has changed to method='asymptotic'.
o clarkevans.test
Default edge correction has changed, to avoid bias.
BUG FIXES
o kernel.squint
The return value was incorrect if the argument 'bw' was given.
Fixed.
o pcf
The variance approximation was calculated incorrectly
(due to the bug in kernel.squint).
Fixed.
o quantile.density
Crashed if `probs` contained NA values and `names=FALSE`.
Fixed.
o bw.smoothppp
Crashed if every point in 'X' was duplicated.
Fixed.
CHANGES IN spatstat.explore VERSION 3.2-3
OVERVIEW
o Improvements to envelope methods.
o Suppress warning messages from density.default.
o Minor improvements and bug fixes.
NEW FUNCTIONS
o compileCDF
Low level utility for calculating cumulative distribution function
of distance variable.
SIGNIFICANT USER-VISIBLE CHANGES
o circdensity
Improved output of 'print' method
o envelope
All methods for `envelope' now accept a summary function
in which the function argument is not named 'r'.
This includes functions such as `transect.im' and `roc'.
o plot.bermantest
Improved layout for plots of Berman's Z2 test.
o plot.fv
New argument 'clip.xlim'.
o circdensity
Suppress annoying warning messages from density.default.
o compileK, compilepcf
Suppress annoying warning messages from density.default.
o rhohat
Suppress annoying warning messages from density.default.
BUG FIXES
o envelope methods
Results were malformed if the name of the function argument was not "r".
Fixed.
CHANGES IN spatstat.explore VERSION 3.2-1
OVERVIEW
o Internal bug fixes.
CHANGES IN spatstat.explore VERSION 3.2-0
OVERVIEW
o We thank Jonatan Gonzalez for contributions.
o Changed the calculation of standard errors in density.ppp and relrisk.ppp.
o Inline arithmetic for function tables ('fv') and arrays ('fasp')
o Standard error calculation for Smooth.ppp (experimental)
o multitype pair correlation functions can save numerator and denominator.
o multitype inhomogeneous J functions.
o More support for automatic bandwidth selection.
o Bug fixes in calculation of standard errors.
NEW FUNCTIONS
o Math.fv, Complex.fv, Summary.fv, Ops.fv
Methods for arithmetic operations for function tables (class 'fv')
o Math.fasp, Complex.fasp, Summary.fasp, Ops.fasp
Methods for arithmetic operations for function arrays (class 'fasp')
o Gcross.inhom, Gdot.inhom
Multitype G functions for inhomogeneous point processes.
o Jcross.inhom, Jdot.inhom, Jmulti.inhom
Multitype J functions for inhomogeneous point processes.
o summary.bw.optim, print.summary.bw.optim
Method for 'summary' of optimised bandwidth objects (class 'bw.optim').
These are the objects produced by the bandwidth selection functions
such as bw.diggle, bw.scott, bw.pcf
SIGNIFICANT USER-VISIBLE CHANGES
o density.ppp
Standard error calculation is now available with any smoothing kernel.
o density.ppp
The interpretation of 'weights' in the calculation of standard error
has changed. New argument 'wtype' controls this interpretation.
o relrisk.ppp
The interpretation of 'weights' in the calculation of standard error
has changed. New argument 'wtype' controls this interpretation.
o relrisk.ppp
New argument 'fudge' specifies a constant numeric value that will be
added to each estimate of point process intensity before calculation of
relative risk.
o Smooth.ppp
Standard error calculation is now supported (Experimental).
o pcfcross, pcfdot, pcfmulti
New argument 'ratio' makes it possible to save the numerator and
denominator of the function estimates, so that estimates can be pooled.
o bw.relrisk.ppp
Additional arguments '...' are now passed to 'density.ppp'.
o eval.fasp
Automatically-generated labels have been improved.
o relrisk.ppp
Issues a warning if numerical underflow is detected.
o rhohat.ppp, rhohat.quad
New argument 'rule.eps' passed to 'as.mask'.
BUG FIXES
o density.ppp
Calculation of standard error was slightly incorrect if edge=TRUE.
Fixed.
o relrisk.ppp
Calculation of standard error was incorrect for non-Gaussian kernels.
Fixed.
CHANGES IN spatstat.explore VERSION 3.1-0
OVERVIEW
o Pair correlation functions allow more control over smoothing parameters.
o Improved support for one-dimensional smoothing kernels.
o Bug fixes in plot.fv.
o Internal improvements and bug fixes.
SIGNIFICANT USER-VISIBLE CHANGES
o kernel.moment
New arguments 'mean' and 'sd'.
Computation accelerated for kernel='cosine' or 'optcosine'.
All cases are now computed using analytic expressions, for m <= 2.
o bw.abram
This function is now generic, with a method for class 'ppp'.
o pcfinhom, pcfdot.inhom, pcfcross.inhom
New arguments 'adjust.sigma' and 'adjust.bw' allow
separate adjustment of the one-dimensional smoothing bandwidth 'bw'
and the spatial smoothing bandwidth 'sigma'.
BUG FIXES
o plot.fv
When the argument 'log' was given, the plotted curves were
incorrectly clipped, or were missing altogether.
Fixed.
o plot.fv
If 'add=TRUE', and if the existing plot was created using logarithmic axes,
the logarithmic scale was ignored.
Fixed.
o plot.fv
Sometimes gave an obscure warning about 'rebound.owin',
when 'xlim' or 'ylim' was given.
Fixed.
CHANGES IN spatstat.explore VERSION 3.0-6
OVERVIEW
o Internal improvements and bug fixes.
CHANGES IN spatstat.explore VERSION 3.0-5
OVERVIEW
o Bug fix in pcf.
o We thank Maximilian Hesselbarth for contributions.
BUG FIXES
o pcf.ppp
Estimates were incorrectly scaled (they were incorrectly multiplied
by the area of the window.) Spotted by Maximilian Hesselbarth.
Bug introduced in spatstat.explore 3.0-0.
Fixed.
CHANGES IN spatstat.explore VERSION 3.0-4
OVERVIEW
o Bug fix in Kest in a very special case.
o We thank 'Marjolein9' for contributions.
BUG FIXES
o Kest
Isotropic edge correction weight was computed incorrectly
for a data point lying exactly on a corner of a rectangular window.
Spotted by GitHub contributor 'Marjolein9'.
Fixed.
CHANGES IN spatstat.explore VERSION 3.0-3
OVERVIEW
o Tweaks to placate package checker.
CHANGES IN spatstat.explore VERSION 3.0-2
OVERVIEW
o Tweaks to placate package checker.
CHANGES IN spatstat.explore VERSION 3.0-1
OVERVIEW
o Tweaks to placate package checker.
CHANGES IN spatstat.explore VERSION 3.0-0
OVERVIEW
o New package
o We thank Marie-Colette van Lieshout and Daniel Manrique-Castano
for contributions.
o Periodic edge correction for K function.
o Changed denominator in K function and pair correlation function.
o Bandwidth selection for adaptive kernel estimation of intensity.
o U-shaped curves in 'rhohat'.
o Radial cumulative integral of an image.
o Minor improvements.
NEW FUNCTIONS
o bw.CvL.adaptive
Bandwidth selection for adaptive kernel estimation of intensity.
o radcumint
Radial cumulative integral of an image.
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.explore
The new package 'spatstat.explore' contains the code for
exploratory data analysis and nonparametric analysis
of spatial data. Examples include 'density.ppp', 'Kest',
'envelope', 'rhohat', 'clarkevans.test'.
o NEWS
The NEWS file for the new package 'spatstat.explore'
contains older news items from the defunct package 'spatstat.core'
(for functions which are now in 'spatstat.explore').
o Kest, Kdot, Kcross, Ldot, Lcross, Kmulti
These functions now accept the option 'correction="periodic"'
to compute the periodic (toroidal) edge correction estimate.
o Kest, pcf, Ksector, Kdot, Kcross, Kmulti
When ratio=TRUE, the denominator is now equal to the number of pairs of
points considered. This does not affect the estimate of the summary
function, but it changes the calculation of pooled estimates
when the estimates were obtained from different sized windows.
o markcorr, markcrosscorr
These functions now allow negative mark values when normalise=FALSE.
o marktable
This function now works for point patterns in three dimensions (class 'pp3')
and point patterns on a network (class 'lpp').
o bw.relrisk
This function is now generic, with a method for class 'ppp'
o compileK, compilepcf
These functions have a new argument 'samplesize'.
If 'ratio=TRUE' the numerator and denominator will be rescaled
by a common factor so that the denominator is equal to 'samplesize'.
o adaptive.density
Now accepts 'method="nearest"' and passes the data to 'nndensity'.
o rhohat.ppp
New options 'smoother="mountain"' and 'smoother="valley"'
for estimating a unimodal function (U-shaped curve).
o rhohat.ppp
If the covariate is a 'distfun', the name of the unit of length is saved
and displayed on the plot.
o rhohat.ppp
New arguments 'jitter', 'jitterfactor', 'interpolate' allow greater
control over the calculation.
o rhohat.ppp
New argument 'do.CI' specifies whether to calculate confidence bands.
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.
BUG FIXES
o rhohat.ppp
The argument 'subset' was not handled correctly in the internal data.
The estimated function 'rho' was correct, but if 'predict.rhohat' was applied,
predictions were computed only in the 'subset', and were possibly incorrect values.
Fixed.
o Gfox, Jfox
Warnings were issued about text formatting errors (mentioning 'sprintf' or 'fmt').
Fixed.
CHANGES IN spatstat.core VERSION 2.4-3
OVERVIEW
o We thank Art Stock for contributions.
o Bug fixes and minor improvements.
BUG FIXES
o Smooth.ppp
Crashed when 'kernel' was a function, 'at="points"' and 'scalekernel=FALSE'.
Fixed.
o Finhom, Ginhom, Jinhom
Crashed when ratio=TRUE.
[Spotted by Art Stock.]
Fixed.
o envelope
Crashed for some of the summary functions when ratio=TRUE.
[Spotted by Art Stock.]
Fixed.
o "[.rat"
Crashed in some cases.
Fixed.
o Kcross
The result of Kcross() was 'invisible',
i.e. it was not automatically printed.
Fixed.
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, Suman Rakshit 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.
SIGNIFICANT USER-VISIBLE CHANGES
o relrisk.ppp
Ratios which are close to 0/0 are handled more effectively,
reducing the likelihood of strange-looking plots when 'sigma' is very small.
BUG FIXES
o density.ppp
Crashed if the observation window had zero area.
Fixed.
o dirichletVoronoi.ppp
Crashed randomly, with obscure error messages from 'im' or 'eval.im',
when argument 'f' had a small value.
[Spotted by Suman Rakshit.]
Fixed.
o dirichletVoronoi.ppp
Rarely, produced an image containing NA values.
[Spotted by Suman Rakshit.]
Fixed.
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 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 reload.or.compute
New argument 'context'
BUG FIXES
o reload.or.compute
Scoping error (crashed sometimes if called from a non-global environment).
Fixed.
CHANGES IN spatstat.core VERSION 2.3-2
OVERVIEW
o Minor improvements and bug fixes.
o We thank Jonas Brehmer for contributions.
SIGNIFICANT USER-VISIBLE CHANGES
o pcf
Improved error message
BUG FIXES
o edge.Ripley
Results were incorrect for data points lying exactly at the corners
of a rectangle.
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 thresholdSelect, thresholdCI
Select the optimal threshold for converting a numerical predictor
to a binary predictor.
o coef<-.fii
Changes the coefficients of a fitted interaction object
(a method for the generic "coef<-")
SIGNIFICANT USER-VISIBLE CHANGES
o distcdf
Improved regularisation algorithm.
Argument 'nr=NULL' is now accepted.
New argument 'delta' allows the result to be interpolated
onto a finer grid.
o collapse.fv
Columns identified by the arguments 'same' and 'different'
may now be absent from some of the 'fv' objects that will be collapsed.
o Kest
When the argument 'domain' is given, the calculation of estimates of K(r)
has changed slightly, to adhere more closely to the description in
the help file.
o reload.or.compute
Now prints a message indicating whether the data were recomputed
or reloaded from file.
New argument 'verbose'.
o pool.envelope
Now uses the value of 'nrank' which was used in the original envelopes.
o Kmulti
New argument 'rmax'.
o Kinhom
No longer issues a warning about changed behaviour in the case where
'lambda' is a fitted model.
o pcfinhom
No longer issues a warning about changed behaviour in the case where
'lambda' is a fitted model.
BUG FIXES
o segregation.test
The test statistic was calculated as the mean, rather than the sum,
of discrepancies between probabilities. (The p-value was not affected.)
Fixed.
o Kest
If 'domain' was specified, 'rmax' was ignored.
Fixed.
o edge.Ripley
Value was incorrect for a point lying exactly on a corner.
Fixed.
o edge.Ripley
Crashed when method="interpreted", if a point lay exactly on a corner.
Fixed.
o plot.fv, plot.envelope
Crashed when trying to display a significance band of width zero
around a constant function.
Fixed.
o collapse.fv
Crashed if 'length(same) > 1'.
Fixed.
CHANGES IN spatstat.core VERSION 2.3-0
OVERVIEW
o Transect of an image along a curve.
o Image cross-correlation and cross-covariance.
o Minor bug fixes.
NEW FUNCTIONS
o cov.im, cor.im
Correlation or covariance between several pixel images.
SIGNIFICANT USER-VISIBLE CHANGES
o transect.im
New argument 'curve' allows the user to specify a curved transect.
BUG FIXES
o rhohat
The rug plot (produced by plot.rhohat) was incorrect
when rhohat was called with method="piecewise".
Fixed.
o markcrosscorr
Did not recognise the option 'correction="none"'.
Fixed.
o roc.ppp
The default plot of the result of roc.ppp
did not include the diagonal line 'y=x'.
Fixed.
CHANGES IN spatstat.core VERSION 2.2-0
OVERVIEW
o We thank Abdollah Jalilian, Yongtao Guan and Rasmus Waagepetersen
for contributions.
o estimation of the spatial covariance function of a pixel image
o simulation of the product shot noise Cox process.
o extensions to rhohat
NEW FUNCTIONS
o rPSNCP
Generate simulated realisations of the product shot noise Cox process.
Contributed by Abdollah Jalilian, Yongtao Guan and Rasmus Waagepetersen.
o spatcov
Estimate the spatial covariance function of a pixel image.
o pairMean
Compute the mean of a specified function of interpoint distance
between random points in a window.
SIGNIFICANT USER-VISIBLE CHANGES
o rhohat
New option (smoother='piecewise') computes a piecewise-constant
estimate of rho(z).
o rhohat
The result now includes the 'average' intensity rho.
o distcdf
Arguments which are NULL will be treated as missing.
o distcdf
New argument 'savedenom'.
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
CHANGES IN spatstat.core VERSION 2.1-0
OVERVIEW
o densityfun.ppp handles query points outside original window
o Minor improvements and bug fixes.
SIGNIFICANT USER-VISIBLE CHANGES
o densityfun.ppp
The resulting function can now handle query points which lie
outside the window of the original data,
and has argument 'drop=TRUE' which specifies how to handle them.
o rpoint
New argument 'forcewin' forces the code to use the window 'win'
when 'f' is a pixel image.
BUG FIXES
o cdf.test
Crashed if the covariate was constant.
Fixed.
CHANGES IN spatstat.core VERSION 2.0-0
OVERVIEW
o We thank Tilman Davies, Greg McSwiggan and Suman Rakshit
for contributions.
o We thank Corey Anderson, Michael Chirico, Andy Craig,
Marcelino de la Cruz, Tilman Davies, Pavel Fibich,
Kurt Hornik, Gopalan Nair, Yonatan Rosen and Rasmus Waagepetersen
for contributions.
o Diffusion kernel smoothing.
o More support for spatial logistic regression models.
o predict.mppm now works for multitype point process models.
o Improved handling of 'newdata' in predict.mppm.
o More support for multi-dimensional patterns.
NEW FUNCTIONS
o densityHeat
New generic function for diffusion kernel estimation of intensity
o densityHeat.ppp
Diffusion kernel estimation of intensity for point pattern in 2 dimensions.
This is an alternative to density.ppp.
o intersect.boxx
Compute intersection of boxes in multi-dimensional space
o scale.boxx, scale.ppx
Methods for 'scale' for boxes and patterns in multi-dimensional space
o shift.boxx, shift.ppx
Methods for 'shift' for boxes and patterns in multi-dimensional space
o is.boxx
Determine whether an object is a multidimensional box
SIGNIFICANT USER-VISIBLE CHANGES
o rotmean
The result now has the same 'unitname' as the input object X.
New argument 'adjust' controls the smoothing bandwidth.
o rlabel
New argument 'group' specifies that the points are divided into
several groups, and that relabelling is applied within each group.
o Kcross, Gcross, Jcross
Function labels (shown on the plot legend) have been
improved when i = j.
o anova.mppm
Issues a warning when applied to random-effects models
(models fitted using the argument 'random').
BUG FIXES
o Gest
If correction="rs" or correction="km", then both the reduced-sample
(border correction) and Kaplan-Meier corrected estimates were calculated.
[Spotted by Gopalan Nair.]
Fixed.
o simulate.rhohat
Crashed when applied to rhohat objects computed from data
on a linear network.
Fixed.
CHANGES IN spatstat.core VERSION 1.65-11
OVERVIEW
o Internal tweaks.
CHANGES IN spatstat.core VERSION 1.65-10
OVERVIEW