Skip to content

Commit bb6ef4d

Browse files
committed
Documentation improvements
1 parent c372d91 commit bb6ef4d

File tree

5 files changed

+18
-6
lines changed

5 files changed

+18
-6
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: spatstat.model
2-
Version: 3.3-5
3-
Date: 2025-03-22
2+
Version: 3.3-5.001
3+
Date: 2025-04-18
44
Title: Parametric Statistical Modelling and Inference for the 'spatstat' Family
55
Authors@R: c(person("Adrian", "Baddeley",
66
role = c("aut", "cre", "cph"),

NEWS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11

2+
CHANGES IN spatstat.model VERSION 3.3-5.001
3+
4+
OVERVIEW
5+
6+
o Documentation improvements.
7+
8+
29
CHANGES IN spatstat.model VERSION 3.3-5
310

411
OVERVIEW

inst/doc/packagesizes.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ date version nhelpfiles nobjects ndatasets Rlines srclines
1919
"2024-11-19" "3.3-3" 269 726 0 39066 1155
2020
"2025-01-20" "3.3-4" 269 726 0 39070 1155
2121
"2025-03-22" "3.3-5" 269 726 0 39076 1155
22+
"2025-04-18" "3.3-5.001" 269 726 0 39076 1155

inst/info/packagesizes.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ date version nhelpfiles nobjects ndatasets Rlines srclines
1919
"2024-11-19" "3.3-3" 269 726 0 39066 1155
2020
"2025-01-20" "3.3-4" 269 726 0 39070 1155
2121
"2025-03-22" "3.3-5" 269 726 0 39076 1155
22+
"2025-04-18" "3.3-5.001" 269 726 0 39076 1155

man/profilepl.Rd

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -177,18 +177,21 @@ profilepl(s, f, \dots, aic=FALSE, rbord=NULL, verbose = TRUE, fast=TRUE)
177177
\code{\link{plot.profilepl}}
178178
}
179179
\examples{
180+
human <- interactive()
180181
# one irregular parameter
181-
rr <- data.frame(r=seq(0.05,0.15, by=0.01))
182-
\testonly{
182+
if(human) {
183+
rr <- data.frame(r=seq(0.05,0.15, by=0.01))
184+
} else {
183185
rr <- data.frame(r=c(0.05,0.1,0.15))
184186
}
185187
ps <- profilepl(rr, Strauss, cells)
186188
ps
187189
plot(ps)
188190

189191
# two irregular parameters
190-
rs <- expand.grid(r=seq(0.05,0.15, by=0.01),sat=1:3)
191-
\testonly{
192+
if(human) {
193+
rs <- expand.grid(r=seq(0.05,0.15, by=0.01),sat=1:3)
194+
} else {
192195
rs <- expand.grid(r=c(0.07,0.12),sat=1:2)
193196
}
194197
pg <- profilepl(rs, Geyer, cells)

0 commit comments

Comments
 (0)