format_ppp {stats19} | R Documentation |
Convert STATS19 data into ppp (spatstat) format.
Description
This function is a wrapper around the spatstat.geom::ppp()
function and
it is used to transform STATS19 data into a ppp format.
Usage
format_ppp(data, window = NULL, ...)
Arguments
data |
A STATS19 dataframe to be converted into ppp format. |
window |
A windows of observation, an object of class |
... |
Additional parameters that should be passed to
|
Value
A ppp object.
See Also
format_sf
for an analogous function used to convert
data into sf format and spatstat.geom::ppp()
for the original function.
Examples
if (requireNamespace("spatstat.geom", quietly = TRUE)) {
x_ppp = format_ppp(accidents_sample)
x_ppp
}