You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you very much for your quick answer last time.
I noticed something else while using the ggplot outputs of the package. The CI.lty argument in the CIcdfplot function does not seem to have any effect. I looked a bit at the function code and it seems that it was just left out of the geom_line() calls when constructing the intervals, so it should be an easy fix 🙂
library(fitdistrplus)
library(ggplot2)
set.seed(123)
s1<- rexp(50, 1)
f1<- fitdist(s1, "exp")
b1<- bootdist(f1, niter=11) #voluntarily low to decrease computation time# Create CIcdfplot with solid CI limit lines
CIcdfplot(b1, CI.output="probability", CI.fill="#d3d3d3", CI.lty=1, plotstyle="ggplot")
The text was updated successfully, but these errors were encountered:
Hello again,
Thank you very much for your quick answer last time.
I noticed something else while using the ggplot outputs of the package. The
CI.lty
argument in theCIcdfplot
function does not seem to have any effect. I looked a bit at the function code and it seems that it was just left out of the geom_line() calls when constructing the intervals, so it should be an easy fix 🙂The text was updated successfully, but these errors were encountered: