I'm trying to plot the location of an incinerator on another plot.
# The first plot
hexbinplot(Easting~Northing | Bclass4,
BIRTH_NO68, las=1, scales =list(x = list(log = 10, equispaced.log = FALSE)),
aspect = 1, bins=50, style="nested.lattice",
main="Spatial distribution of birthweights by quartile")
# The second plot
ppp=xyplot(173098~319444, data=BIRTH_NO68, pch=17, cex=15, col="Black")
# Together
hexbinplot(Easting~Northing | Bclass4, BIRTH_NO68, las=1,
scales = list(x = list(log = 10, equispaced.log = FALSE)), aspect = 1,
bins=50, style="nested.lattice",
main="Spatial distribution of birthweights by quartile") + pop
All that comes up is the first plot. Here's the map I'm trying to mark the location of an incinerator on.