Given the following beta distribution
x <- seq(0,1,length=100)
db <- dbeta(x, .25, .43)
ggplot() + geom_line(aes(x,db))+scale_x_continuous(breaks = seq(0,1,by=.1))
how can I find the area under breaks 0 to 1 by 0.1 intervals. Not cumulative area just area for that specific break. For example the break 0.2 to 0.3 would have only that area inclusive and not previous areas.