[1] 8.382332
Summation notation (\(\sum\)):
\[ \sum_{i=1}^Qx_i=x_1 + x_2 + \cdots + x_Q \]
For all notation (\(\forall\)):
\[ x_k = 1 \hspace{0.2cm} \forall k\rightarrow x=1 \]
Strictly non-negative, right-skewed, and non-symmetric.
\(F_X(x)=P(X \leq x)\)
\[ \hat{G}(r) = \frac{1}{n(\mathbf x)}\sum_{i}\mathbf 1\{d_i \le r\} \]
The \(\hat{G}\) function represents the number of elements in the set of distances up to some threshold \(r\), normalized by the total number of points \(n\) in point pattern \(\mathbf{x}\).
The |>
is the native pipe operator introduced in R 4.1.0.
The old pipe operator is %>%
from magrittr
package.
It allows chained expressions in place of nested expressions to improve code readability.
Do not confuse it with +
in ggplot2
; they are not the same thing.
Load the following three packages.
If you have trouble restoring the reproducible environment, you need to manually install the packages first.
2025 Zehui Yin