I've been trying to compare two histograms by condition (either 1 or 0), but my code does not work. It creates a grey histogram that does not allow me to compare groups. Any clues here? Btw I'm working in an r dataframe.
ggplot(my_data, aes(x=GrandNeedMean, fill=Condition)) +
geom_histogram(binwidth = 0.25, alpha=.5, position = "identity") +
ggtitle("GrandNeedMean by condition histogram")