study_region_ex: Study region for example data

Description Usage Format See Also Examples

Description

Boundary region for small example data set defined in terms of (x,y) vertices of a polygon.

Usage

1

Format

A sf spatial features polygon

See Also

Other example data objects: blocks_ex, census_1_ex, census_2008_bw, census_2014_bw, census_2_ex, comp_bayes_lm_ex, focal_vs_comp_ex, growth_ex, growth_spatial_ex, growth_toy, species_bw, study_region_bw

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
library(ggplot2)
library(sf)

# Convert stems to sf object
census_1_ex_sf <- census_1_ex %>%
  st_as_sf(coords = c("gx", "gy"))

# Plot stems with plot boundary
ggplot() +
  geom_sf(data = study_region_ex) +
  geom_sf(data = study_region_bw, color = "red", fill = "transparent")

forestecology documentation built on Oct. 2, 2021, 5:07 p.m.