stats19 (version 1.2.0)

format_ppp: Convert STATS19 data into ppp (spatstat) format.

Description

This function is a wrapper around 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 owin(). If window = NULL (i.e. the default) then the function creates an approximate bounding box covering the whole UK. It can also be used to filter only the events occurring in a specific region of UK (see the examples of get_stats19).

...

Additional parameters that should be passed to ppp function. Read the help page of that function for a detailed description of the available parameters.

Value

A ppp object.

See Also

format_sf for an analogous function used to convert data into sf format and ppp for the original spatstat function.

Examples

Run this code
# NOT RUN {
if (requireNamespace("spatstat", quietly = TRUE)) {
  x_ppp = format_ppp(accidents_sample)
  spatstat::plot.ppp(spatstat::unmark(x_ppp))
}

# }

Run the code above in your browser using DataLab