Plotting Raptor Roosts: A Simple Approach to Visualizing Bird Habitat Data
ggplot() +
  geom_sf(data = roostsf2, aes(color = Existing)) +
  geom_sf(data = roostsf1, aes(color = HR))

This code will correctly plot both datasets, with the roostsf2 dataset colored by Existing and the roostsf1 dataset colored by HR.


Last modified on 2025-02-11