Buenas noches. Estoy tratando de hacer el siguiente histograma por capas, con el dataset iris. El problema es que no encuentra a la función geom_hist() ni tampoco a geom_histogram()
Cuando ejecuto el siguiente código, me sale un error diciendo que la función no se ha encontrado
head(iris)
library(ggplot2)
ggplot(iris, aes(x = Sepal.Width, y = Sepal.Length)) +
geom_hist() +
facet_wrap(~Species) +
stat_smooth(method = "lm") +
scale_x_continuous("Frecuencia absoluta", limits = c(2, 5)) +
scale_y_continuous("Largo del sépalo (cm)", limits = c(4, 8), breaks = seq(4, 8, 2)) +
theme_bw()
Error in geom_hist() : could not find function "geom_hist"
Si en vez de usar geom_hist(), uso geom_histogram() me devuelve el siguiente error
Error: stat_bin() must not be used with a y aesthetic.
Si alguien me puede orientar le estaré agradecido.