Posts by Guilherme Heiden • 53 points
1 post
-
5
votes1
answer111
viewsQ: Data presentation in ggplot2
Hi, I’m having trouble at ggplot2 on a histogram. The code: ggplot(data.combined[1:891,], aes(x = Age, fill=Survived)) + facet_wrap(~Sex + Pclass) + geom_histogram(binwidth = 10) + xlab ("Age") +…