me da error Error in `+.gg`: ! Cannot add <ggproto> objects together ℹ Did you forget to add this object to a <ggplot> object? Backtrace: 1. ggplot2:::`+.gg`(...)

ggplot() +
geom_point(aes(x=X, y= Y), color="red", data=patrons, size= 3)+
ggtitle("Sismos")+
theme_bw()+
coord_equal()
coord_equal()+
scale_x_continuous(breaks=c(0:anchoTotalRejilla), minor_breaks = NULL, limits=c(0,anchoTotalRejilla)) +
scale_y_continuous(breaks=c(0:anchoTotalRejilla), minor_breaks = NULL, limits=c(0,anchoTotalRejilla))

This is missing a data frame argument

ggplot(YOURDATA) +