I have a list of ages in days and I am looking to display them in years on a density plot.
I did this two ways - changing the labels on the x axis to years and by dividing the data by 365. These methods give me different density estimates:
df <- data.frame(id = 1:80000, age = rnorm(80000, 46, 5) * 365)
The first plot is generated using:
breaks <- seq(from = min(df$age), to = max(df$age), by = 10*365)
ggplot(data = df, aes(x = age)) +
geom_density(aes(y = ..density..)) +
scale_x_continuous(breaks= breaks, labels = floor(breaks/365))
The density displayed on the y-axis ranges from 0 to 0.0002
When I do this however (divide the ages by 365 to get years - not just change the x labels like above):
ggplot(data = df, aes(x = age/365)) +
geom_density(aes(y = ..density..))
The plot looks the same but the density ranges from 0 to 0.08 I am struggling to understand what is going on - why is the density different between the two plots?

geom_freqpoly) easier to interpret - I very rarely use density plots myself. – hadley Nov 20 '12 at 14:11