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) +
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.
If you have a query related to it or one of the replies, start a new topic and refer back with a link.