Do you know how I could get the inflection points from an R density plot (e.g. looking like the one generated by the code below)?
Thanks!
set.seed(1453)
distro<-c(rnorm(500,mean=0.01,sd=0.001),rnorm(200,mean=0.9,sd=0.01),sample(c(0:100)/100))
distro<-distro[distro>0]
distro<-distro[distro<1]
plot(density(distro))