Skip to content

Commit 8b37fde

Browse files
committed
Last fix vignettes
1 parent 5b03d68 commit 8b37fde

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

vignettes/articles/reconstruct_multi_patterns.Rmd

+4-4
Original file line numberDiff line numberDiff line change
@@ -42,23 +42,23 @@ marked_pattern <- as.ppp(random, W = owin(c(0, xr), c(0, yr)))
4242
The point pattern must contain the following data An x and y coordinate, a metric mark (in metres) and a nominal mark defined as a factor. The order must be respected. Now the reconstruction with several marks can be started with the following code. Note that the maximum number of iterations has been set to max_steps = 10000 to keep the computation time for this example to a minimum. For an application, this value should be increased according to the number of points in the pattern.
4343

4444
```{r}
45-
reconstruction <- reconstruct_pattern_multi(marked_pattern, n_repetitions = 1, max_steps = 10000)
45+
reconstruction <- reconstruct_pattern_multi(marked_pattern, n_repetitions = 1, max_steps = 10000, issue = 5000)
4646
```
4747

4848
As a result, you will receive a list containing a variety of information, for example, the reference pattern, the reconstructed pattern, the number of successful actions, the energy development and much more. If you wish to perform several reconstructions of the same reference pattern, you must increase n_repetitions to the desired number.
4949

5050
```{r}
51-
reconstruction_2 <- reconstruct_pattern_multi(marked_pattern, n_repetitions = 3, max_steps = 10000)
51+
reconstruction_2 <- reconstruct_pattern_multi(marked_pattern, n_repetitions = 3, max_steps = 10000, issue = 5000)
5252
```
5353

5454
To activate a visualisation of the reconstruction that shows the changes in the pattern at the relevant time, you must proceed as follows.
5555

5656
```{r}
57-
reconstruction_3 <- reconstruct_pattern_multi(marked_pattern, n_repetitions = 1, max_steps = 10000, plot = TRUE)
57+
reconstruction_3 <- reconstruct_pattern_multi(marked_pattern, n_repetitions = 1, max_steps = 10000, issue = 5000, plot = TRUE)
5858
```
5959

6060
Finally, you can use the `plot()` function to view different summary statistics of the reference pattern (dashed line) compared to the reconstructed pattern (solid line).
6161

6262
```{r}
63-
plot(reconstruction)
63+
plot(reconstruction, verbose = FALSE)
6464
```

0 commit comments

Comments
 (0)