plot_mpp | R Documentation |
Plot a marked point process
plot_mpp(mpp_data, pattern_type)
mpp_data |
ppp object with marks or data frame with columns (x, y, size). |
pattern_type |
type of pattern to plot ("reference" or "simulated"). |
a ggplot object of the marked point process.
# Load example data
data(small_example_data)
mpp_data <- generate_mpp(
locations = small_example_data %>% dplyr::select(x, y),
marks = small_example_data$size,
xy_bounds = c(0, 25, 0, 25)
)
# Plot the marked point process
plot_mpp(mpp_data, pattern_type = "reference")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.